Skip to content

Commit fd70284

Browse files
APM-6127 use quotation marks for bool
1 parent c68d77c commit fd70284

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

azure/templates/run-smoke-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@ steps:
1414
export APIGEE_ACCESS_TOKEN="$(secret.AccessToken)"
1515
export SOURCE_COMMIT_ID="$(Build.SourceVersion)"
1616
17-
if [ ${{ parameters.production }} = "true" ]; then
17+
if [ "${{ parameters.production }}" = "true" ]; then
1818
echo "Running smoketest-prod"
1919
make smoketest-prod
2020
else
21+
echo "Running smoketest"
2122
make smoketest
2223
fi
2324
workingDirectory: $(Pipeline.Workspace)/s/$(SERVICE_NAME)/$(SERVICE_ARTIFACT_NAME)

0 commit comments

Comments
 (0)