From 18c0e27da436811ca28e01183180a31500f1e848 Mon Sep 17 00:00:00 2001 From: Cory Sanin Date: Tue, 28 Oct 2025 17:49:29 -0500 Subject: [PATCH] this is ridiculous now --- docker/scripts/entrypoint.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docker/scripts/entrypoint.sh b/docker/scripts/entrypoint.sh index cb91a85..d372d9c 100755 --- a/docker/scripts/entrypoint.sh +++ b/docker/scripts/entrypoint.sh @@ -28,10 +28,12 @@ applyPatch() { } postEntrypoint() { - ls -al - if [ -n "$POST" ] && [ -x post-entrypoint.sh ] ; then + if [ -n "$POST" ] && [ -x "./post-entrypoint.sh" ] ; then echo "EXECUTING POSTENTRY" ./post-entrypoint.sh + else + echo "POST: $POST" + ls -al fi }