this is ridiculous now
All checks were successful
Docker Image CI / Build build images (artix) (push) Successful in -28s
NPM Audit Check / Check NPM audit (push) Successful in -2m11s
App Image CI / Build app image (push) Successful in -1m25s
Docker Image CI / Build build images (arch) (push) Successful in 3s

This commit is contained in:
2025-10-28 17:49:29 -05:00
parent d34b41b899
commit 18c0e27da4

View File

@@ -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
}