From c75f210a4bfb2e7f7af1f8c454d7edd0c2185f0e Mon Sep 17 00:00:00 2001 From: Warren Hood Date: Wed, 9 Oct 2024 01:18:52 +0200 Subject: [PATCH] Default to using file apply policy of MergeOverwrite --- mcmpmgr/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mcmpmgr/src/main.rs b/mcmpmgr/src/main.rs index b8c409e..80a3717 100644 --- a/mcmpmgr/src/main.rs +++ b/mcmpmgr/src/main.rs @@ -139,8 +139,8 @@ enum FileCommands { /// Side to copy the file/folder to #[arg(long, default_value_t = DownloadSide::Server)] side: DownloadSide, - /// File apply policy - whether to always apply the file or just apply it once (if the file doesn't exist) - #[arg(long, default_value_t = FileApplyPolicy::Always)] + /// File apply policy - whether to always apply the file or just apply it once (if the file doesn't exist), or merge (mergeretain or mergeoverwrite) + #[arg(long, default_value_t = FileApplyPolicy::MergeOverwrite)] apply_policy: FileApplyPolicy, }, /// Show metadata about a file in the pack