Skip to content

Commit

Permalink
Make verify snaps exit with code 0 (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrtenz authored Sep 5, 2023
1 parent 57a3777 commit f58ed81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/verify-snaps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ async function verifySnap(snap: VerifiedSnap) {
latestVersion === version,
).catch((error) => {
console.error(error.message);
process.exitCode = 1;
// process.exitCode = 1;
});
}
}
Expand Down Expand Up @@ -108,5 +108,5 @@ async function main() {

main().catch((error) => {
console.error(error);
process.exitCode = 1;
// process.exitCode = 1;
});

0 comments on commit f58ed81

Please sign in to comment.