detox
detox copied to clipboard
double `/` in the path printed
detox -r --dry-run dir and detox -r --dry-run dir/ doesn't show the same output
dir/ would display double / in the path printed
on detox 2.0.0 on MacOS
Confirmed.
$ src/detox -V
detox 2.0.2
$ src/detox -vvv -r --dry-run /tmp/blah/
Scanning: /tmp/blah/
/tmp/blah//de/dah/hi there -> /tmp/blah//de/dah/hi_there
$ src/detox -vvv -r --dry-run /tmp/blah
Scanning: /tmp/blah
/tmp/blah/de/dah/hi there -> /tmp/blah/de/dah/hi_there
$
$ src/detox -V
detox 3.0.0
$ src/detox -vvv -r --dry-run /tmp/blah/
Scanning: /tmp/blah/
/tmp/blah//de/dah/hi there -> /tmp/blah//de/dah/hi_there
$ src/detox -vvv -r --dry-run /tmp/blah
Scanning: /tmp/blah
/tmp/blah/de/dah/hi there -> /tmp/blah/de/dah/hi_there
$