initial codes try 6

This commit is contained in:
2025-10-28 06:23:03 +02:00
parent 2c93a869f1
commit c8edf5e204

View File

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