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 }