From 892cb188f8df72bdd07b751679a2d3da96df2d79 Mon Sep 17 00:00:00 2001 From: Leonard Steppy Date: Thu, 12 Dec 2024 09:50:32 +0100 Subject: [PATCH] Adjust upload directory property --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 81f6f5d..bbbbfa9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -40,8 +40,8 @@ enum Command { #[arg(short = 'a', long, default_value = "delete", default_missing_value = "archive", num_args = 0..1)] old_version_policy: OldVersionPolicy, /// The directory where to upload to - #[arg(short, long, default_value = "plugins")] - directory: PathBuf, + #[arg(short = 'p', long, default_value = "plugins")] + upload_directory: PathBuf, }, /// Execute a command on the servers #[command(visible_short_flag_alias = 'c')]