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 d2a56e0 commit d2dccf8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/node-dev/commands/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ 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 any).message}"`);
this.log('====================================');
this.log(error.stack);
this.log((error as any).stack);
return;
}

Expand Down

0 comments on commit d2dccf8

Please sign in to comment.