From ff4ef3a2914d0e9e5c5115b76aa3aec870073334 Mon Sep 17 00:00:00 2001 From: Noel Kwan <47273164+kwannoel@users.noreply.github.com> Date: Thu, 7 Sep 2023 10:03:57 +0800 Subject: [PATCH] fix(ci): fix backwards compat with `ci-release` profile (#12139) --- ci/scripts/backwards-compat-test.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ci/scripts/backwards-compat-test.sh b/ci/scripts/backwards-compat-test.sh index 9a937824d1db7..1c1b4d388faa9 100755 --- a/ci/scripts/backwards-compat-test.sh +++ b/ci/scripts/backwards-compat-test.sh @@ -25,10 +25,8 @@ shift $((OPTIND -1)) # profile is either ci-dev or ci-release if [[ "$profile" == "ci-dev" ]]; then echo "Running in ci-dev mode" - ENABLE_RELEASE_PROFILE=false -elif [[ "$profile" != "ci-release" ]]; then +elif [[ "$profile" == "ci-release" ]]; then echo "Running in ci-release mode" - ENABLE_RELEASE_PROFILE=true else echo "Invalid option: profile must be either ci-dev or ci-release" 1>&2 exit 1