diff options
author | 2019-06-29 20:07:50 -0700 | |
---|---|---|
committer | 2019-06-29 20:07:50 -0700 | |
commit | 2010e15a9d400b1f81b95cc3b6bdc1cde8ea902a (patch) | |
tree | ade3c38d9d5af1502f233cfed5c7067657b5857c | |
parent | Test variables (diff) |
Fix syntax
-rw-r--r-- | azure-pipelines.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a1682be..04ca4a6 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -32,8 +32,8 @@ jobs: VENV_CHANGED: $[ coalesce(dependencies.test.outputs['check.VENV_CHANGED'], true) ] BASE_PULL: $[ coalesce(dependencies.test.outputs['check.BASE_PULL'], false) ] - - steps: - - script: | - echo "${BASE_CHANGED}" - echo "${VENV_CHANGED}" - echo "${BASE_PULL}" + steps: + - script: | + echo "${BASE_CHANGED}" + echo "${VENV_CHANGED}" + echo "${BASE_PULL}" |