Skip to content

Commit 082c0d0

Browse files
Add set -euo pipefail to not ignore errors in scripts (#94)
1 parent e21bf1f commit 082c0d0

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

scripts/update_changelog.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/bin/bash
2+
set -euo pipefail
23

34
while [ "$#" -gt 0 ]; do
45
case "$1" in

scripts/update_file.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/bin/bash
2+
set -euo pipefail
23

34
# Check if params are provided
45
if [ $# -ne 3 ]; then

0 commit comments

Comments
 (0)