This commit is contained in:
Aya Morisawa 2016-12-29 20:11:05 +09:00
parent bb57937327
commit 966408f26f

View file

@ -15,7 +15,7 @@ function checkDependency(serviceName: string, command: string, transform: (x: st
};
const x = exec(command, { silent: true }) as any;
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) {
log('Warn', `Unable to find ${serviceName}`);
}