Merge branch 'master' of github.com:wesbarnett/snap-pac

This commit is contained in:
James Barnett 2018-01-17 20:33:51 -05:00
commit 9530dd9a1b
No known key found for this signature in database
GPG key ID: E4B5E45AA3B8C5C3

View file

@ -28,8 +28,8 @@ declare -r pre_or_post=$1
[[ -f $SNAPPAC_CONFIG_FILE ]] && [[ -r $SNAPPAC_CONFIG_FILE ]] && source $SNAPPAC_CONFIG_FILE
DESC_LIMIT=${DESC_LIMIT:-48}
ABORT_ON_FAIL=${ABORT_ON_FAIL:-"no"}
declare -r DESC_LIMIT=${DESC_LIMIT:-48}
declare -r ABORT_ON_FAIL=${ABORT_ON_FAIL:-"no"}
out() { printf "$1 $2\n" "${@:3}"; }
error() { out "==> \033[00;31merror:\033[00m" "$@"; } >&2