Error message instead of putting an invalid name in Vagrantfile

This commit is contained in:
ariasuni 2017-08-26 19:18:41 +02:00
parent 1cde7fabe7
commit bfadc1afc5

View file

@ -109,6 +109,10 @@ elif [ "$1" = "create-env" ]; then
## Run a vm and give a prompt ##
#################################
elif [ "$1" = "run" ]; then
if [[ $2 == *"-"* ]]; then
echo "ERROR: Vagrant virtual machine ($2) cannot contain any dash"
exit 2
fi
DOMAIN=$2
VERSION='stable'