mirror of
https://github.com/eliasstepanik/ark-ac-server-tools.git
synced 2026-01-26 08:18:27 +00:00
Avoid "no command" message if remove-mods is only command
This commit is contained in:
parent
f0ef9fdaf7
commit
e8de3826c9
@ -2204,7 +2204,11 @@ while true; do
|
|||||||
;;
|
;;
|
||||||
remove-mods)
|
remove-mods)
|
||||||
doRemoveMods "${args[0]}"
|
doRemoveMods "${args[0]}"
|
||||||
continue
|
if [ $# -eq 0 ]; then
|
||||||
|
exit 0
|
||||||
|
else
|
||||||
|
continue
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
list-instances)
|
list-instances)
|
||||||
doListAllInstances "${options[@]}"
|
doListAllInstances "${options[@]}"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user