Skip to content

Commit

Permalink
Add missing -e to script tasks that were missing it (#5722)
Browse files Browse the repository at this point in the history
  • Loading branch information
achamayou authored Oct 11, 2023
1 parent 3df2476 commit 7dd7984
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .azure-pipelines-templates/configure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
- checkout: self
clean: true
- script: |
set -ex
echo "Determine if any code has changed."
if git diff --ignore-submodules=dirty --quiet origin/${SYSTEM_PULLREQUEST_TARGETBRANCH:-origin/main} -- ':!doc' ':!*.md' ':!scripts/azure_deployment'; then
echo " - Documentation change only"
Expand Down
1 change: 1 addition & 0 deletions .azure-pipelines-templates/deploy_aci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
fetchTags: true

- script: |
set -ex
env
name: print_env
displayName: "Print Environment Variables"
Expand Down
1 change: 1 addition & 0 deletions .azure-pipelines-templates/scan_build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
steps:
- script: |
set -ex
mkdir build
cd build
../scripts/scan-build.sh
Expand Down
2 changes: 1 addition & 1 deletion .azure-pipelines-templates/trace_validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ steps:
displayName: "Install TLA dependencies"
- script: |
set -x
set -ex
cd tla/
JSON=../build/replicate.ndjson ./tlc.sh Traceccfraft.tla 2>&1
JSON=../build/election.ndjson ./tlc.sh Traceccfraft.tla 2>&1
Expand Down

0 comments on commit 7dd7984

Please sign in to comment.