fix: remove extra whitespace in variables

This commit is contained in:
ramvignesh-b
2026-04-24 03:33:03 +05:30
parent a2aadb5d2b
commit d5444bd47f
+2 -2
View File
@@ -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