From 1db08ae3f7a38bdbeed64fa7f1552d5cf4e11259 Mon Sep 17 00:00:00 2001 From: Petr Bokoc Date: Aug 27 2021 03:34:32 +0000 Subject: Update build script --- diff --git a/build.sh b/build.sh index 1e4db2d..75dd387 100755 --- a/build.sh +++ b/build.sh @@ -14,14 +14,19 @@ if [ "$(uname)" == "Darwin" ]; then elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then # Running on Linux. + # there isn't an antora/aarch64 container, antora can be installed locally # Check whether podman is available, else faill back to docker # which requires root. - if [ -f /usr/bin/podman ]; then + if [ -f /usr/local/bin/antora ]; then + /usr/local/bin/antora $cmd + elif [[ `uname -m` == "aarch64" ]]; then + echo "no antora/aarch64 container try just \`npm install -g @antora/cli @antora/site-generator-default\`" + elif [ -f /usr/bin/podman ]; 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 ""