fix(options): --help should exit with code zero

This commit is contained in:
2025-10-24 18:47:34 -07:00
parent 9f7ca672ea
commit fc710ec391

View File

@@ -131,7 +131,7 @@ pub trait OptionsRepresentable {
); );
} }
// Exit because the help has been displayed. // Exit because the help has been displayed.
std::process::exit(1); std::process::exit(0);
} }
// Insert the option and the value into the map. // Insert the option and the value into the map.