MCPcopy Index your code
hub / github.com/callstack/agent-device / writeInstallInProgressNotice

Function writeInstallInProgressNotice

src/daemon/client/daemon-client.ts:109–114  ·  view source on GitHub ↗
(command: string | undefined)

Source from the content-addressed store, hash-verified

107}
108
109function writeInstallInProgressNotice(command: string | undefined): void {
110 if (!isInstallLikeCommand(command) || process.stderr.isTTY !== true || process.env.CI) return;
111 process.stderr.write(
112 command === PUBLIC_COMMANDS.reinstall ? 'Reinstalling...\n' : 'Installing...\n',
113 );
114}
115
116function isInstallLikeCommand(command: string | undefined): boolean {
117 return (

Callers 1

sendToDaemonFunction · 0.85

Calls 2

isInstallLikeCommandFunction · 0.85
writeMethod · 0.80

Tested by

no test coverage detected