Skip to content

Commit

Permalink
fix: don't hang if our provides aren't needed
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfig committed Dec 15, 2020
1 parent f0709e0 commit ebfc6a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/agoric-cli/lib/deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export default async function deployMain(progname, rawArgs, powers, opts) {
}
if (!needsProvide) {
console.info(`Don't need our provides: ${notNeeded.join(', ')}`);
return;
process.exit(0);
}

const nextLoading = [];
Expand Down

0 comments on commit ebfc6a8

Please sign in to comment.