Silence shellcheck warning

* SC2086: Double quote to prevent globbing and word splitting.
pull/306/head
Hugo Hromic 2019-07-06 00:30:41 +01:00
parent 552f083024
commit bcc22ce8be
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ if [ "${CONTAINER_EXISTS}" != "" ] && [ "${CONTINUE}" != "1" ]; then
fi
# Modify original build-options to allow config file to be mounted in the docker container
BUILD_OPTS="$(echo ${BUILD_OPTS:-} | sed -E 's@\-c\s?([^ ]+)@-c /config@')"
BUILD_OPTS="$(echo "${BUILD_OPTS:-}" | sed -E 's@\-c\s?([^ ]+)@-c /config@')"
${DOCKER} build -t pi-gen "${DIR}"
if [ "${CONTAINER_EXISTS}" != "" ]; then