diff --git a/CHANGELOG.md b/CHANGELOG.md index 19459c3..c105638 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ # abra x.x.x (UNRELEASED) - Fix secret length generation ([f537417](https://git.autonomic.zone/coop-cloud/abra/commit/1b85bf3d37280e9632c315d759c0f2d09c039fef)) +- Fix checking out new apps ([#164](https://git.autonomic.zone/coop-cloud/abra/issues/164) # abra 0.7.4 (2021-05-10) diff --git a/abra b/abra index 68bb46e..3d56bb8 100755 --- a/abra +++ b/abra @@ -545,7 +545,7 @@ require_app (){ fi # shellcheck disable=SC2086 - if ! git clone ${git_extra_args:-} "$GIT_URL/$APP.git" "$ABRA_DIR/apps/$APP" > /dev/null 2>&1 ; then + if ! git clone ${git_extra_args:-} "$GIT_URL$APP.git" "$ABRA_DIR/apps/$APP" > /dev/null 2>&1 ; then error "Could not retrieve app type '$APP', this app type doesn't exist?" fi