From bbf4e822fd41aa5f926629214eb8388743707d2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Ravier?= Date: Thu, 24 Feb 2022 16:54:44 +0100 Subject: [PATCH] build.sh: Fix overquoting for ${cmd} Fixes: ``` $ ./build.sh This build script is using Podman to run the build in an isolated environment. antora: option '--html-url-extension-style ' argument 'indexify site.yml' is invalid. Allowed choices are default, drop, indexify. ``` See https://pagure.io/fedora-docs/template/pull-request/21 --- build.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.sh b/build.sh index 21c03252..96c2b69a 100755 --- a/build.sh +++ b/build.sh @@ -10,7 +10,7 @@ if uname | grep -iwq darwin; then echo "" echo "This build script is using Docker container runtime to run the build in an isolated environment." echo "" - docker run --rm -it -v "$(pwd):/antora" "${image}" "${cmd}" + docker run --rm -it -v "$(pwd):/antora" "${image}" ${cmd} elif uname | grep -iq linux; then # Running on Linux. @@ -26,7 +26,7 @@ elif uname | grep -iq linux; then echo "" echo "This build script is using Podman to run the build in an isolated environment." echo "" - podman run --rm -it -v "$(pwd):/antora:z" "${image}" "${cmd}" + podman run --rm -it -v "$(pwd):/antora:z" "${image}" ${cmd} elif [ -f /usr/bin/docker ]; then echo "" @@ -34,14 +34,14 @@ elif uname | grep -iq linux; then echo "" if groups | grep -wq "docker"; then - docker run --rm -it -v "$(pwd):/antora:z" "${image}" "${cmd}" + docker run --rm -it -v "$(pwd):/antora:z" "${image}" ${cmd} else echo "You might be asked for your password." echo "You can avoid this by adding your user to the 'docker' group," echo "but be aware of the security implications." echo "See https://docs.docker.com/install/linux/linux-postinstall/" echo "" - sudo docker run --rm -it -v "$(pwd):/antora:z" "${image}" "${cmd}" + sudo docker run --rm -it -v "$(pwd):/antora:z" "${image}" ${cmd} fi else echo ""