From c8edf5e2043a8c5130015bbae44a4b7604ccb6bc Mon Sep 17 00:00:00 2001 From: pavel Date: Tue, 28 Oct 2025 06:23:03 +0200 Subject: [PATCH] initial codes try 6 --- files/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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