Skip to content

Commit

Permalink
Fixed printing of error message
Browse files Browse the repository at this point in the history
  • Loading branch information
dkirchan committed May 4, 2024
1 parent 6ea6419 commit 4f58f21
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export const cli = () => {
statusCode = await executeCommand(command, envVars, workDir);
} catch (err) {
log.error('An error occured when running the test script.');
log.error(err);
log.error(err.message);
statusCode = 1;
} finally {
// Delete serverless project
Expand Down

0 comments on commit 4f58f21

Please sign in to comment.