We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbbefc9 commit 759b614Copy full SHA for 759b614
docs/content/documentation/deployment/gitlab-pages.md
@@ -71,10 +71,10 @@ pages:
71
- |
72
apt-get update
73
DEBIAN_FRONTEND=noninteractive apt-get install --assume-yes --no-install-recommends wget ca-certificates
74
- zola_url="https://github.com/getzola/zola/releases/download/v$ZOLA_VERSION/zola-v$ZOLA_VERSION-x86_64-unknown-linux-gnu.tar.gz"
+ zola_url="https://github.com/getzola/zola/releases/download/v${ZOLA_VERSION}/zola-v${ZOLA_VERSION}-x86_64-unknown-linux-gnu.tar.gz"
75
if ! wget --quiet --spider $zola_url; then
76
- echo "A Zola release with the specified version could not be found.";
77
- exit 1;
+ echo "A Zola release with the specified version could not be found."
+ exit 1
78
fi
79
wget $zola_url
80
tar -xzf *.tar.gz
0 commit comments