Skip to content

Commit

Permalink
Fix build-docker.sh CONTINUE=1 mode (#716)
Browse files Browse the repository at this point in the history
This fixes commit ed68013

Remove extra quotes so that docker sees pigen_work, not "pigen_work".
  • Loading branch information
stefanb2 committed Oct 17, 2023
1 parent 663401d commit 0ef867e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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=""
Expand Down

0 comments on commit 0ef867e

Please sign in to comment.