1
0
mirror of https://git.envs.net/envs/burrow.git synced 2024-06-19 07:37:04 +00:00

error message, but no break, on unknown command

This commit is contained in:
James Tomasino 2018-01-21 09:50:59 -05:00
parent 526a6521fa
commit a41b8c12f6

1
burrow
View File

@ -112,6 +112,7 @@ function parse_input() {
"recipe") arg_recipe=1 ;; "recipe") arg_recipe=1 ;;
"create-config") arg_create_config=1 ;; "create-config") arg_create_config=1 ;;
"update-git") arg_update_git=1 ;; "update-git") arg_update_git=1 ;;
*) echo "Unknown command: $arg";;
esac esac
done done
} }