Skip to content

Commit

Permalink
chore: testing wip
Browse files Browse the repository at this point in the history
Signed-off-by: Case Wylie <[email protected]>
  • Loading branch information
cmwylie19 committed Feb 26, 2025
1 parent cf8d3a9 commit 0aee3aa
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion hack/load.cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,12 @@ program
log(`Install package artifact into working directory module`);
cmd = new Cmd({ cmd: `npm install ${path.basename(worktgz)}`, cwd: workdir });
log({ cmd: cmd.cmd, cwd: cmd.cwd });
log(await cmd.run(), "");
try {
log(await cmd.run(), "");
} catch (e) {
console.error(e);
process.exit(1);
}

//
// run deploy
Expand Down

0 comments on commit 0aee3aa

Please sign in to comment.