From 0ef867e5eb949e9340d5d812527578a7d10162a2 Mon Sep 17 00:00:00 2001 From: Stefan Becker Date: Tue, 17 Oct 2023 16:42:07 +0300 Subject: [PATCH] Fix build-docker.sh CONTINUE=1 mode (#716) This fixes commit ed68013abbe46c0f665a157a9bdfd06603811101 Remove extra quotes so that docker sees pigen_work, not "pigen_work". --- build-docker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-docker.sh b/build-docker.sh index 3445a40..9549d90 100755 --- a/build-docker.sh +++ b/build-docker.sh @@ -96,7 +96,7 @@ ${DOCKER} build --build-arg BASE_IMAGE=${BASE_IMAGE} -t pi-gen "${DIR}" if [ "${CONTAINER_EXISTS}" != "" ]; then DOCKER_CMDLINE_NAME="${CONTAINER_NAME}_cont" DOCKER_CMDLINE_PRE="--rm" - DOCKER_CMDLINE_POST="--volumes-from=\"${CONTAINER_NAME}\"" + DOCKER_CMDLINE_POST="--volumes-from=${CONTAINER_NAME}" else DOCKER_CMDLINE_NAME="${CONTAINER_NAME}" DOCKER_CMDLINE_PRE=""