diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/vm | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -262,7 +262,7 @@ case "$ACTION" in if [ -e "$PID_F" ]; then printf 'The VM for "%s" is already running with PID %s.\n' \ "$OS" "$(cat "$PID_F")" >&2 - exit 1 + exit fi if [ -z "$IMAGE" ]; then @@ -314,7 +314,7 @@ case "$ACTION" in if [ ! -e "$PID_F" ]; then printf 'The VM for "%s" is not running, already.\n' "$OS" >&2 - exit 1 + exit fi PID="$(cat "$PID_F")" |