From 6451e911c75a94de21383864db531cf3156aed18 Mon Sep 17 00:00:00 2001 From: Michel Memeteau Date: Wed, 25 Mar 2020 17:03:00 +0100 Subject: [PATCH] Fix typo , repo mode works now --- utils/provision | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utils/provision b/utils/provision index deee495..29293f9 100755 --- a/utils/provision +++ b/utils/provision @@ -103,9 +103,10 @@ function buy_domain_name () { } function application () { + #We check if a APP_REPO_URL was specified - if[ -z ${APP_REPO_URL:-} ]; then + if [ -z ${APP_REPO_URL:-} ]; then warning "NO repo URL specified, using argument as full URL" git_url=https://${arg_a}.git else -- GitLab