refactor(run): change set statements

Use the long form name for each option instead of short hand names or a
combination of both - e.g. `set -eu` and `set -o pipefail`.
This commit is contained in:
Oliver Davies 2023-11-22 21:53:50 +00:00
parent 9b360be240
commit b1571f3174
5 changed files with 9 additions and 4 deletions

View file

@ -2,7 +2,8 @@
# {{ managedText | raw }}
set -eu
set -o errexit
set -o pipefail
# Disable Git hooks.
function git-hooks:off {