Skip to content

Commit

Permalink
Use long name of Bash options
Browse files Browse the repository at this point in the history
  • Loading branch information
GrabbenD committed Dec 10, 2023
1 parent 26a3132 commit a779c19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ostree.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -o pipefail # Exit code from last command
set -e # Exit on non-zero status
set -u # Error on unset variables
set -o errexit # Exit on non-zero status
set -o nounset # Error on unset variables

# [ENVIRONMENT]: OVERRIDE DEFAULTS
function ENV_CREATE_OPTS {
Expand Down

0 comments on commit a779c19

Please sign in to comment.