From 7eed38f27e2c612d348b934388c13c2963bc7d13 Mon Sep 17 00:00:00 2001 From: ramvignesh-b Date: Fri, 24 Apr 2026 04:01:57 +0530 Subject: [PATCH] chore: fix docker compose bin resolution in e2e script --- scripts/run-e2e.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run-e2e.sh b/scripts/run-e2e.sh index 0a4a439..45c31b7 100755 --- a/scripts/run-e2e.sh +++ b/scripts/run-e2e.sh @@ -6,7 +6,7 @@ set -e NODE_BIN=$(command -v bun || command -v npm || true) # Use podman if available. Not everyone has it CONTAINER_BIN=$(command -v podman || command -v docker || true) -COMPOSE_BIN=$(command -v docker-compose) +COMPOSE_BIN=$(command -v docker-compose || true) if [ -z "$CONTAINER_BIN" ]; then echo "Sorry, you need either podman or docker installed to run this script." exit 1