bin/tame: Shift arguments after -v

* bin/tame (main): Fix issue where -v did not shift arguments.
master
Mike Gerwitz 2018-12-04 13:45:36 -05:00
parent 10106993b5
commit f62f2ccacb
1 changed files with 1 additions and 1 deletions

View File

@ -270,7 +270,7 @@ main()
case "${1:-}" in
--kill) kill-tamed "$root"; exit;;
-v|--verbose) outcmd=cat;;
-v|--verbose) outcmd=cat; shift;;
--help) usage;;
esac