From b8ba82a17fb88faf96b629f2e22a7d9ede6785e9 Mon Sep 17 00:00:00 2001 From: Carles Pina i Estany Date: Tue, 14 Dec 2021 23:48:39 +0000 Subject: [PATCH] Fix typo --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 9c6a0f2..88f2eeb 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -33,7 +33,7 @@ echo "[+] Cloning destination git repository $DESTINATION_REPOSITORY_NAME" git config --global user.email "$USER_EMAIL" git config --global user.name "$USER_NAME" -=git clone --single-branch --branch "$TARGET_BRANCH" "https://$USER_NAME:$API_TOKEN_GITHUB@$GITHUB_SERVER/$DESTINATION_REPOSITORY_USERNAME/$DESTINATION_REPOSITORY_NAME.git" "$CLONE_DIR" +git clone --single-branch --branch "$TARGET_BRANCH" "https://$USER_NAME:$API_TOKEN_GITHUB@$GITHUB_SERVER/$DESTINATION_REPOSITORY_USERNAME/$DESTINATION_REPOSITORY_NAME.git" "$CLONE_DIR" GIT_CLONE_EXIT_CODE=$? if [ "$GIT_CLONE_EXIT_CODE" != 0 ]