We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13cbeef commit 13d8ca5Copy full SHA for 13d8ca5
1 file changed
scripts/sdk-create-pr.sh
@@ -28,9 +28,9 @@ if [ ! -d "${SDK_REPO_LOCAL_PATH}" ]; then
28
fi
29
30
if [[ -z $3 ]]; then
31
- REPO_URL_SSH="git@github.com:stackitcloud/stackit-sdk-go.git"
+ REPO_URL="git@github.com:stackitcloud/stackit-sdk-go.git"
32
else
33
- REPO_URL_SSH=$3
+ REPO_URL=$3
34
35
36
if [[ -z $4 ]]; then
@@ -61,7 +61,7 @@ rm -rf "${work_dir}/sdk_to_push/.git"
61
62
# Initialize git repo
63
cd "${work_dir}/git_repo"
64
-git clone "${REPO_URL_SSH}" ./ --quiet
+git clone "${REPO_URL}" ./ --quiet
65
git config user.name "${COMMIT_NAME}"
66
git config user.email "${COMMIT_EMAIL}"
67
0 commit comments