Skip to content

Commit

Permalink
$mol_build fix start
Browse files Browse the repository at this point in the history
  • Loading branch information
zerkalica committed Nov 14, 2024
1 parent 0be4ede commit e6244db
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion build/build.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,13 @@ namespace $ {
process.exit(1)
}
} else {
Promise.resolve().then( ()=> $mol_wire_async(build.server()).start() )
Promise.resolve().then( ()=> {
try {
build.server().start()
} catch (error) {
$mol_fail_log(error)
}
})
}
}

Expand Down

0 comments on commit e6244db

Please sign in to comment.