mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Added check to exit when both Copy and Move flags are set
This commit is contained in:
parent
55ba89b8e0
commit
d7becbfd1b
@ -86,6 +86,12 @@ namespace Wabbajack.CLI.Verbs
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (Copy && Move)
|
||||
{
|
||||
Log("You can't set both copy and move flags!");
|
||||
return -1;
|
||||
}
|
||||
|
||||
var isModlist = Modlist.EndsWith(Consts.ModListExtension);
|
||||
|
||||
var list = new List<TransferFile>();
|
||||
|
Loading…
Reference in New Issue
Block a user