From 195a1741f9b589f804da926112f1a86234761c1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20=C3=81lvaro?= Date: Wed, 5 Oct 2022 20:01:17 +0200 Subject: [PATCH] fix: Quote test command --- tests/lib/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/common.sh b/tests/lib/common.sh index 7753188..73d655c 100644 --- a/tests/lib/common.sh +++ b/tests/lib/common.sh @@ -90,7 +90,7 @@ function start_container_and_wait() docker run --rm --detach --name "${CONTAINER_NAME}" \ --publish 4505:4505 --publish 4506:4506 \ - --env PUID=$(id -u) --env PGID=$(id -g) \ + --env PUID="$(id -u)" --env PGID="$(id -g)" \ --platform "${PLATFORM}" ${DOCKER_ARGS[@]} \ "${IMAGE_NAME}" || return 1