Enable "set -euo pipefail" in all bash scripts.
This enables "set -e", "set -u", and "set -o pipefail", which catch common errors.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
set -euo pipefail
|
||||
cd $(dirname "$0")
|
||||
topdir=$(pwd)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user