Skip to content

Commit

Permalink
fix(ci): fix backwards compat with ci-release profile (#12139)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel authored Sep 7, 2023
1 parent 9c98d26 commit ff4ef3a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions ci/scripts/backwards-compat-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ff4ef3a

Please sign in to comment.