Fix typo , repo mode works now

This commit is contained in:
Michel Memeteau 2020-03-25 17:03:00 +01:00
parent ba58e277dd
commit 6451e911c7

View file

@ -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