fix: decrease default verbosity (+ add IRONFOX_VERBOSE env var to control it)

Signed-off-by: celenity <celenity@celenity.dev>
This commit is contained in:
celenity
2026-07-23 23:16:25 +00:00
parent 0cc18b7b85
commit 025d607da5
24 changed files with 189 additions and 88 deletions

View File

@@ -4,7 +4,7 @@ set -euo pipefail
# Set-up our environment
if [[ -z "${IRONFOX_SET_ENVS+x}" ]]; then
/bin/bash -x $(dirname $0)/env.sh
/bin/bash $(dirname $0)/env.sh
fi
source $(dirname $0)/env.sh
@@ -14,6 +14,13 @@ source "${IRONFOX_UTILS}"
# Include version info
source "${IRONFOX_VERSIONS}"
# Set verbosity
if [[ "${IRONFOX_VERBOSE}" == 1 ]]; then
set -x
else
set +x
fi
# Set timezone to UTC for consistency
unset TZ
export TZ="UTC"