Skip to content

Commit

Permalink
feat: Updated packages/node-dev/commands/build.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] authored Jan 4, 2024
1 parent 1f3e1a8 commit 7ea2dcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/node-dev/commands/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ export class Build extends Command {

this.log(`The nodes got build and saved into the following folder:\n${outputDirectory}`);

} catch (error) {
this.log(`\nGOT ERROR: "${error.message}"`);
} catch (error: any) {
this.log(`\nGOT ERROR: "${(error as Error).message}"`);
this.log('====================================');
this.log(error.stack);
return;
Expand Down

0 comments on commit 7ea2dcd

Please sign in to comment.