Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix sh
  • Loading branch information
FumingZhang committed Aug 20, 2021
commit 6fadbf1c65e7db2d865da00fa903e005008cdb2a
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ jobs:
displayName: "Live Test with Python"
steps:
- bash: |
if [[ $(SUB_NAME) == "acs" ]]; then
if [[ "$(SUB_NAME)" == "acs" ]]; then
echo "##vso[task.setvariable variable=AZCLI_ALT_SUBSCRIPTION_ID]$(ACS_TEST_SUB_ID)"
elif [[ $(SUB_NAME) == "runner" ]]; then
elif [[ "$(SUB_NAME)" == "runner" ]]; then
echo "##vso[task.setvariable variable=AZCLI_ALT_SUBSCRIPTION_ID]$(AKS_CLI_RUNNER_SUB_ID)"
else
echo "##vso[task.setvariable variable=AZCLI_ALT_SUBSCRIPTION_ID]$(AKS_CLI_PR_GATE_SUB_ID)"
Expand Down