Avoid "no command" message if remove-mods is only command

This commit is contained in:
Ben Peddell 2016-05-30 20:29:15 +10:00
parent f0ef9fdaf7
commit e8de3826c9

View File

@ -2204,7 +2204,11 @@ while true; do
;;
remove-mods)
doRemoveMods "${args[0]}"
continue
if [ $# -eq 0 ]; then
exit 0
else
continue
fi
;;
list-instances)
doListAllInstances "${options[@]}"