Skip to content

Commit

Permalink
CI: Exit on failure in update-ref.sh
Browse files Browse the repository at this point in the history
If any part of the script failed, it would silently ignore it.
These bash options will make it fail on the first error and print
the commands as they are executed.
  • Loading branch information
deribaucourt committed May 28, 2024
1 parent cbf4d84 commit 794572b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/update-ref.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/bash -ex

# Update the fetch-poky.sh script
FILE="scripts/fetch-poky.sh"
Expand Down

0 comments on commit 794572b

Please sign in to comment.