Skip to content

Commit

Permalink
Exit with success (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
bugadani authored Feb 13, 2025
1 parent 45c350e commit a310da9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Template settings are now described in a template-specific `yaml` file (#103)
- Test cases are now generated from template settings (#106)
- Updated and removed some unused extensions (#109, #111)
- The CLI now exits with success when the user quits (#117)

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ fn main() -> Result<(), Box<dyn Error>> {
if let Some(selected) = selected {
selected
} else {
process::exit(-1);
process::exit(0);
}
} else {
args.option.clone()
Expand Down

0 comments on commit a310da9

Please sign in to comment.