build: Update with latest version from template
See https://pagure.io/fedora-docs/template
This commit is contained in:
parent
58ca99b19f
commit
ee34971709
1 changed files with 4 additions and 4 deletions
8
build.sh
8
build.sh
|
@ -10,7 +10,7 @@ if uname | grep -iwq darwin; then
|
||||||
echo ""
|
echo ""
|
||||||
echo "This build script is using Docker container runtime to run the build in an isolated environment."
|
echo "This build script is using Docker container runtime to run the build in an isolated environment."
|
||||||
echo ""
|
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
|
elif uname | grep -iq linux; then
|
||||||
# Running on Linux.
|
# Running on Linux.
|
||||||
|
@ -26,7 +26,7 @@ elif uname | grep -iq linux; then
|
||||||
echo ""
|
echo ""
|
||||||
echo "This build script is using Podman to run the build in an isolated environment."
|
echo "This build script is using Podman to run the build in an isolated environment."
|
||||||
echo ""
|
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
|
elif [ -f /usr/bin/docker ]; then
|
||||||
echo ""
|
echo ""
|
||||||
|
@ -34,14 +34,14 @@ elif uname | grep -iq linux; then
|
||||||
echo ""
|
echo ""
|
||||||
|
|
||||||
if groups | grep -wq "docker"; then
|
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
|
else
|
||||||
echo "You might be asked for your password."
|
echo "You might be asked for your password."
|
||||||
echo "You can avoid this by adding your user to the 'docker' group,"
|
echo "You can avoid this by adding your user to the 'docker' group,"
|
||||||
echo "but be aware of the security implications."
|
echo "but be aware of the security implications."
|
||||||
echo "See https://docs.docker.com/install/linux/linux-postinstall/"
|
echo "See https://docs.docker.com/install/linux/linux-postinstall/"
|
||||||
echo ""
|
echo ""
|
||||||
sudo docker run --rm -it -v "$(pwd):/antora:z" "${image}" "${cmd}"
|
sudo docker run --rm -it -v "$(pwd):/antora:z" "${image}" ${cmd}
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
echo ""
|
echo ""
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue