Skip to content

Commit 545a020

Browse files
committed
feat: better npm fail message in Playground
1 parent 35210f6 commit 545a020

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cubejs-server-core/core/DevServer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const executeCommand = (command, args, options) => {
99
return new Promise((resolve, reject) => {
1010
child.on('close', code => {
1111
if (code !== 0) {
12-
reject(new Error(`${command} ${args.join(' ')} failed with exit code ${code}`));
12+
reject(new Error(`${command} ${args.join(' ')} failed with exit code ${code}. Please check your console.`));
1313
return;
1414
}
1515
resolve();

0 commit comments

Comments
 (0)