#120 build: Update with latest version from template
Merged 2 years ago by pbokoc. Opened 2 years ago by siosm.
fedora-docs/ siosm/install-guide template-sync  into  master

file modified
+4 -4
@@ -10,7 +10,7 @@ 

      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 @@ 

          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 @@ 

          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 ""

Fix over quoting of ${cmd}.

Pull-Request has been merged by pbokoc

2 years ago
Metadata