1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
Description: make --dry-run work
Author: Sascha Steinbiss <satta@debian.org>
Applied-Upstream: https://codeberg.org/sattadeb/mussort/commit/c730a5e199bbedaea79d05b370e8e3de49c7ced7
Last-Update: 2026-02-21
--- a/mussort
+++ b/mussort
@@ -2342,7 +2342,7 @@
'nocache|no-cache' => sub { $cacheFile = false },
'refresh-cache' => sub { $readFromCache = false },
'v|verbose+' => \$verbosity,
- 'dryrun' => sub { $DryRunMove = true; $cacheFile = false },
+ 'dryrun|dry-run' => sub { $DryRunMove = true; $cacheFile = false },
'dryrunmove' => sub { $DryRunMove = true },
'q|quiet' => sub { $verbosity = 0 },
'cleantree' => $addAllCleanTree,
|