From d5444bd47f6d8ef121b421c48c34cebe094ae7ed Mon Sep 17 00:00:00 2001 From: ramvignesh-b Date: Fri, 24 Apr 2026 03:33:03 +0530 Subject: [PATCH] fix: remove extra whitespace in variables --- scripts/run-e2e.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/run-e2e.sh b/scripts/run-e2e.sh index 8bb2844..1f05d39 100755 --- a/scripts/run-e2e.sh +++ b/scripts/run-e2e.sh @@ -3,10 +3,10 @@ set -e # Usage: ./run-e2e.sh [--docker] [--ui] -NODE_BIN= $(command -v bun || command -v npm) +NODE_BIN=$(command -v bun || command -v npm) # Use podman if available. Not everyone has it CONTAINER_BIN=$(command -v podman || command -v docker) -COMPOSE_BIN= $(command -v docker-compose) +COMPOSE_BIN=$(command -v docker-compose) if [ -z "$CONTAINER_BIN" ]; then echo "Sorry, you need either podman or docker installed to run this script." exit 1