chore: fix docker compose bin resolution in e2e script

This commit is contained in:
ramvignesh-b
2026-04-24 04:01:57 +05:30
parent b49dc69a25
commit 7eed38f27e
+1 -1
View File
@@ -6,7 +6,7 @@ set -e
NODE_BIN=$(command -v bun || command -v npm || true) NODE_BIN=$(command -v bun || command -v npm || true)
# Use podman if available. Not everyone has it # Use podman if available. Not everyone has it
CONTAINER_BIN=$(command -v podman || command -v docker || true) 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 if [ -z "$CONTAINER_BIN" ]; then
echo "Sorry, you need either podman or docker installed to run this script." echo "Sorry, you need either podman or docker installed to run this script."
exit 1 exit 1