Add Bash strict mode to bin/asdf

This commit is contained in:
Trevor Brown 2019-05-11 17:39:51 -04:00
parent 547357a1d5
commit 9eff4b00fe

View File

@ -1,4 +1,6 @@
#!/usr/bin/env bash
set -o nounset -o pipefail -o errexit
IFS=$'\t\n' # Stricter IFS settings
# shellcheck source=lib/utils.sh
source "$(dirname "$(dirname "$0")")/lib/utils.sh"