From bfadc1afc5eff1ab6539c062ce7cf3ba482aa003 Mon Sep 17 00:00:00 2001 From: ariasuni Date: Sat, 26 Aug 2017 19:18:41 +0200 Subject: [PATCH] Error message instead of putting an invalid name in Vagrantfile --- ynh-dev | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ynh-dev b/ynh-dev index 14885ab..636a0ea 100755 --- a/ynh-dev +++ b/ynh-dev @@ -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' @@ -252,7 +256,7 @@ elif [ "$1" = "use-git" ]; then echo "Using Git repository for yunohost" # bin - create_sym_link "/vagrant/yunohost/bin/yunohost" "/usr/bin/yunohost" + create_sym_link "/vagrant/yunohost/bin/yunohost" "/usr/bin/yunohost" create_sym_link "/vagrant/yunohost/bin/yunohost-api" "/usr/bin/yunohost-api" # data