✨
This commit is contained in:
parent
bb57937327
commit
966408f26f
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ function checkDependency(serviceName: string, command: string, transform: (x: st
|
||||||
};
|
};
|
||||||
const x = exec(command, { silent: true }) as any;
|
const x = exec(command, { silent: true }) as any;
|
||||||
if (x.code === code.success) {
|
if (x.code === code.success) {
|
||||||
log('Info', `DEPS: ${serviceName} ${transform(x.stdout)}`);
|
log('Info', `${serviceName} ${transform(x.stdout)}`, 'Deps');
|
||||||
} else if (x.code === code.notFound) {
|
} else if (x.code === code.notFound) {
|
||||||
log('Warn', `Unable to find ${serviceName}`);
|
log('Warn', `Unable to find ${serviceName}`);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue