Use correct version of hugo.

This commit is contained in:
Condorra 2023-02-18 21:48:55 +11:00
parent 7823b60f12
commit 9299abf27c

View File

@ -2,7 +2,7 @@
set -Eeuo pipefail set -Eeuo pipefail
if [[ ! -f hugo/hugo ]]; then if [[ ! -f hugo/hugo ]]; then
curl -L https://github.com/gohugoio/hugo/releases/download/v0.110.0/hugo_0.110.0_linux-arm64.tar.gz | tar -xvz -C hugo/ curl -L https://github.com/gohugoio/hugo/releases/download/v0.110.0/hugo_extended_0.110.0_linux-amd64.tar.gz | tar -xvz -C hugo/
fi fi
export PATH="$(pwd)/hugo:$PATH" export PATH="$(pwd)/hugo:$PATH"