Update warn message

This commit is contained in:
Aya Morisawa 2016-12-29 20:12:26 +09:00
parent ca9b2ad702
commit b10f1f78bc

View file

@ -17,6 +17,6 @@ function checkDependency(serviceName: string, command: string, transform: (x: st
if (x.code === code.success) {
log('Info', `${serviceName} ${transform(x.stdout)}`, 'Deps');
} else if (x.code === code.notFound) {
log('Warn', `Unable to find ${serviceName}`);
log('Warn', `${serviceName} not found`);
}
}