From 7d1387f0e8ed71167a080404c22d1bfbca042f27 Mon Sep 17 00:00:00 2001 From: Ruben Hoenle Date: Thu, 5 Mar 2026 11:10:07 +0100 Subject: [PATCH] fix(scripts): use correct variable for oas lock --- scripts/download-oas.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/download-oas.sh b/scripts/download-oas.sh index 1976d67..9dacdfe 100755 --- a/scripts/download-oas.sh +++ b/scripts/download-oas.sh @@ -31,7 +31,7 @@ fi git clone "${OAS_REPO}" "${ROOT_DIR}/oas" --quiet # OPTIONAL: Lock to a specific commit -if [[ "$OAS_REPO_NAME" == "https://github.com/stackitcloud/stackit-api-specifications.git" ]]; then +if [[ "$OAS_REPO" == "https://github.com/stackitcloud/stackit-api-specifications.git" ]]; then cd "${ROOT_DIR}/oas" git checkout 335aa32af4d6c0d2a036b8567773da2f051f7efb fi