Added default to quick() in main #3

Added a default case to quick in main (quickcommit).
This commit is contained in:
Christina Sørensen 2023-06-12 11:54:58 +00:00 committed by GitHub
commit c507379f25
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -46,7 +46,7 @@ fn main() {
config.link_all();
}
Some(Commands::Quick { msg }) => {
config.quick(&msg.as_ref().unwrap());
config.quick(&msg.as_ref().get_or_insert(&"gg: quick commit".to_string()));
}
Some(Commands::Clone { msg: _ }) => {
config.clone_all();