diff options
| author | 2019-06-30 14:54:11 -0700 | |
|---|---|---|
| committer | 2019-06-30 14:54:11 -0700 | |
| commit | c4b0ae3ec66ab45557ad89d05ac89b244b9fd37e (patch) | |
| tree | bfe89cf2c3530796adc4055718c54da4145ba661 | |
| parent | Use a variable in a job condition (diff) | |
Remove trailing comma
| -rw-r--r-- | azure-pipelines.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f33b7c4..5158603 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -34,7 +34,7 @@ jobs: condition: > and( succeeded(), - eq(variables.BASE_CHANGED, True), + eq(variables.BASE_CHANGED, True) ) dependsOn: test |