We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
bpb
1 parent 43577e0 commit 4b6a0d9Copy full SHA for 4b6a0d9
1 file changed
bpb/src/main.rs
@@ -81,6 +81,10 @@ fn main() -> Result<(), Error> {
81
}
82
Some("--help") => print_help_message(),
83
Some(arg) if gpg_sign_arg(arg) => verify_commit(),
84
+ None => {
85
+ print_help_message()?;
86
+ std::process::exit(3)
87
+ },
88
_ => {
89
if args.any(|arg| gpg_sign_arg(&arg)) {
90
verify_commit()
0 commit comments