diff options
| -rw-r--r-- | azure-pipelines.yml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 087e188..c5eb593 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -46,12 +46,13 @@ jobs: displayName: 'Echo All Variables' - script: echo bar - condition: and( - succeeded(), - eq(variables.BASE_CHANGED, False), - eq(variables.VENV_CHANGED, False), - eq(variables.BASE_PULL, True) - ) + condition: > + and( + succeeded(), + eq(variables.BASE_CHANGED, False), + eq(variables.VENV_CHANGED, False), + eq(variables.BASE_PULL, True) + ) displayName: 'Compare String' - script: echo bar |