Skip to content
Snippets Groups Projects
Commit fde9d1bd authored by Aya Morisawa's avatar Aya Morisawa
Browse files

Update log message

parent 7d8d7eed
No related branches found
No related tags found
No related merge requests found
......@@ -15,8 +15,8 @@ function checkDependency(serviceName: string, command: string, transform: (x: st
};
const x = exec(command, { silent: true }) as any;
if (x.code === code.success) {
log('Info', `${serviceName} ${transform(x.stdout)}`, 'Deps');
log('Info', `${serviceName} ${transform(x.stdout)} found`, 'Deps');
} else if (x.code === code.notFound) {
log('Warn', `${serviceName} not found`);
log('Warn', `${serviceName} not found`, 'Deps');
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment