From cf3c44aff5139980e932350026deaffb111371f6 Mon Sep 17 00:00:00 2001 From: Ruben Hoenle Date: Fri, 10 Jul 2026 11:20:35 +0200 Subject: [PATCH] chore(generator): remove ssh postfix from clone url variable name git can clone via every supported protocol, no need to include some protocol in the variable name --- scripts/sdk-create-pr.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/sdk-create-pr.sh b/scripts/sdk-create-pr.sh index ef4c3596..3ce58563 100755 --- a/scripts/sdk-create-pr.sh +++ b/scripts/sdk-create-pr.sh @@ -28,9 +28,9 @@ if [ ! -d "${SDK_REPO_LOCAL_PATH}" ]; then fi if [[ -z $3 ]]; then - REPO_URL_SSH="git@github.com:stackitcloud/stackit-sdk-go.git" + REPO_URL="git@github.com:stackitcloud/stackit-sdk-go.git" else - REPO_URL_SSH=$3 + REPO_URL=$3 fi if [[ -z $4 ]]; then @@ -61,7 +61,7 @@ rm -rf "${work_dir}/sdk_to_push/.git" # Initialize git repo cd "${work_dir}/git_repo" -git clone "${REPO_URL_SSH}" ./ --quiet +git clone "${REPO_URL}" ./ --quiet git config user.name "${COMMIT_NAME}" git config user.email "${COMMIT_EMAIL}"