summaryrefslogtreecommitdiff
path: root/start.sh
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-05-11 18:07:52 -0600
committermo khan <mo@mokhan.ca>2025-05-11 21:21:38 -0600
commita8832943085f9e46ea2e0b238fabdd75eaf89828 (patch)
tree21d57ad2b7c912ed6d23744737f2f6f7c38e388f /start.sh
parentcb1a58c1256d48d2922b8fad3e5a4ea8d61e773d (diff)
chore: enable DEBUG when var is exported
Diffstat (limited to 'start.sh')
-rw-r--r--start.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/start.sh b/start.sh
index 8a35dec..49f3985 100644
--- a/start.sh
+++ b/start.sh
@@ -2,7 +2,7 @@
set -e
-[ -z "$DEBUG" ] || set -x
+[ -n "$DEBUG" ] && set -x
oidc_scheme=$(echo "$OIDC_ISSUER" | awk -F[/:] '{print $1}')
oidc_host=$(echo "$OIDC_ISSUER" | awk -F[/:] '{print $4}')