feat(entrypoint): add debug mode for entrypoint

Signed-off-by: Josh <josh.t.richards@gmail.com>
jtr-feat-entrypoint-debug
Josh 1 year ago committed by GitHub
parent 6c1075b88d
commit 0be52642ec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +1,9 @@
#!/bin/sh
set -eu
if [ -n "${IMAGE_DEBUG+x}" ]; then
echo "**Image debugging enabled**"
set -x
fi
# version_greater A B returns whether A > B
version_greater() {

Loading…
Cancel
Save