From af66a89067f5afd2a51c76ccde2cb3fa358c92a7 Mon Sep 17 00:00:00 2001 From: Philip Mueller Date: Fri, 23 Jun 2023 15:09:23 +0200 Subject: [PATCH] [src] set paru as default --- src/args.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/args.rs b/src/args.rs index 909c77c..4c9bb54 100644 --- a/src/args.rs +++ b/src/args.rs @@ -88,7 +88,7 @@ pub struct CreateCommand { #[structopt(long = "allow-non-removable")] pub allow_non_removable: bool, - #[structopt(long = "aur-helper", possible_values=&["paru", "yay"], default_value="yay")] + #[structopt(long = "aur-helper", possible_values=&["paru", "yay"], default_value="paru")] pub aur_helper: AurHelper, }