Skip to content

Commit 0e19dd9

Browse files
committed
chore: improve robustness and consistency across multiple scripts
- Combine `errexit`, `nounset`, and `pipefail` options into a single `set -euo pipefail` command Signed-off-by: Bo-Yi Wu <[email protected]>
1 parent bd83ba7 commit 0e19dd9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

entrypoint.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
#!/usr/bin/env bash
22

3-
set -o errexit
4-
set -o nounset
5-
set -o pipefail
3+
set -euo pipefail
64

75
export GITHUB="true"
86

0 commit comments

Comments
 (0)