Skip to content

Commit

Permalink
NoMove should default to false, so if you specify the flag it becomes…
Browse files Browse the repository at this point in the history
… true
  • Loading branch information
bc3tech committed Dec 9, 2022
1 parent 0e052d6 commit e310c26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class ProgramArgs
[ArgShortcut("u"), ArgShortcut("--u"), ArgDescription(@"True to update the creation & write time to match EXIF time, false otherwise"), ArgDefaultValue(false)]
public bool UpdateTimestamp { get; set; }

[ArgShortcut("n"), ArgShortcut("--n"), ArgDescription(@"Don't move any files (useful with -u to update times only)"), ArgDefaultValue(true)]
[ArgShortcut("n"), ArgShortcut("--n"), ArgDescription(@"Don't move any files (useful with -u to update times only)"), ArgDefaultValue(false)]
public bool NoMove { get; set; }

[ArgShortcut("r"), ArgShortcut("--r"), ArgDescription(@"True to process all files in all subdirectories of Input Directory. Compatible only with -NoMove"), ArgDefaultValue(false)]
Expand Down

0 comments on commit e310c26

Please sign in to comment.