mirror of
https://github.com/WarrenHood/MCModpackManager.git
synced 2025-04-29 09:04:59 +01:00
Default to using file apply policy of MergeOverwrite
This commit is contained in:
parent
d1bce34c60
commit
c75f210a4b
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue