Remove bogus slash in GIT_URL

Fixes #164
This commit is contained in:
3wc 2021-05-29 23:36:37 +02:00
parent fccd7865f5
commit a1534a244a
2 changed files with 2 additions and 1 deletions

View File

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

2
abra
View File

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