mirror of
https://github.com/ramvignesh-b/pi-ku.git
synced 2026-05-04 08:56:52 +00:00
fix: remove extra whitespace in variables
This commit is contained in:
+2
-2
@@ -3,10 +3,10 @@ set -e
|
|||||||
|
|
||||||
# Usage: ./run-e2e.sh [--docker] [--ui]
|
# 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
|
# Use podman if available. Not everyone has it
|
||||||
CONTAINER_BIN=$(command -v podman || command -v docker)
|
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
|
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
|
||||||
|
|||||||
Reference in New Issue
Block a user