Skip to content

Commit

Permalink
Portman error exit code (#594)
Browse files Browse the repository at this point in the history
* changed the exit code to a non zero value
  • Loading branch information
Matt2212 authored Jul 8, 2024
1 parent 4f683e9 commit fb35bae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/PortmanError.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ export class PortmanError extends Error {
error?.detail && console.log(chalk.red(error.detail))
console.log(chalk.red(consoleLine))

process.exit(0)
process.exit(1)
}
}

0 comments on commit fb35bae

Please sign in to comment.