summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2024-08-07 22:23:48 +0200
committerPatrick Spek <p.spek@tyil.nl>2024-08-07 23:01:30 +0200
commit64fc021645506405a7cc4c872f4653906621b94e (patch)
treede6d20b9e6299a891258d9ecd7f6cc9e96d18e88
parent96e6c911a557ae3a9ec7832e077219eddc1fac28 (diff)
downloadcgit-64fc021645506405a7cc4c872f4653906621b94e.tar.gz
cgit-64fc021645506405a7cc4c872f4653906621b94e.tar.bz2
Sort env output
-rw-r--r--entrypoint.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/entrypoint.sh b/entrypoint.sh
index 3182e98..2a43a24 100644
--- a/entrypoint.sh
+++ b/entrypoint.sh
@@ -13,8 +13,8 @@ export HOSTNAME="${HOSTNAME:-"$(hostname -f)"}"
export HTTPD_LISTEN_PORT="${HTTPD_LISTEN_PORT:-"80"}"
# Output debugging info
-env | grep '^CGITRC_'
-env | grep '^HTTPD_'
+env | grep '^CGITRC_' | sort
+env | grep '^HTTPD_' | sort
# Turn templates into proper files
envsubst \