Skip to content

Commit

Permalink
chore(cosmic-swingset): fix linting by using status instead of code
Browse files Browse the repository at this point in the history
  • Loading branch information
iomekam committed Jan 21, 2025
1 parent 0eec604 commit 2fa6631
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cosmic-swingset/check-validator.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ if (ret.error) {
if (ret.stderr) {
process.stderr.write(ret.stderr);
}
if (ret.code) {
process.exit(ret.code);
if (ret.status) {
process.exit(ret.status);
}

const output = ret.stdout.toString('utf-8');
Expand Down

0 comments on commit 2fa6631

Please sign in to comment.