diff --git a/files/entrypoint.sh b/files/entrypoint.sh index 0c36f23..d86ce84 100644 --- a/files/entrypoint.sh +++ b/files/entrypoint.sh @@ -5,7 +5,7 @@ log(){ echo "[nats-registration][entrypoint] $*"; } err(){ echo "[nats-registration][entrypoint][ERROR] $*" >&2; } # Sanity: tools -for bin in curl jq python; do +for bin in curl python; do command -v "$bin" >/dev/null 2>&1 || { err "Missing $bin"; exit 2; } done