aboutsummaryrefslogtreecommitdiff
path: root/services/docker/blog/install-hugo.bash
diff options
context:
space:
mode:
authorYuqian Yang <crupest@crupest.life>2025-02-24 02:18:20 +0800
committerYuqian Yang <crupest@crupest.life>2025-02-26 02:21:41 +0800
commit0c885ba1bf30ce8308880f926be85b6f5a499fa6 (patch)
tree25f42a9386f760c9d7d47d9b154e4a0089e49dff /services/docker/blog/install-hugo.bash
parentdc7b27c713351066e20947ea6d1adb80aeb68d9f (diff)
downloadcrupest-0c885ba1bf30ce8308880f926be85b6f5a499fa6.tar.gz
crupest-0c885ba1bf30ce8308880f926be85b6f5a499fa6.tar.bz2
crupest-0c885ba1bf30ce8308880f926be85b6f5a499fa6.zip
feat(www): YEAH!
Diffstat (limited to 'services/docker/blog/install-hugo.bash')
-rwxr-xr-xservices/docker/blog/install-hugo.bash22
1 files changed, 0 insertions, 22 deletions
diff --git a/services/docker/blog/install-hugo.bash b/services/docker/blog/install-hugo.bash
deleted file mode 100755
index a448138..0000000
--- a/services/docker/blog/install-hugo.bash
+++ /dev/null
@@ -1,22 +0,0 @@
-#! /usr/bin/env bash
-
-set -e
-
-apt-get update
-apt-get install -y tini locales curl git
-rm -rf /var/lib/apt/lists/*
-localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
-
-VERSION=$(curl -s https://api.github.com/repos/gohugoio/hugo/releases/latest | grep '"tag_name":' | sed -E 's/.*"v([^"]+)".*/\1/')
-
-echo "The latest version of hugo is $VERSION."
-
-url="https://github.com/gohugoio/hugo/releases/download/v${VERSION}/hugo_extended_${VERSION}_linux-amd64.deb"
-
-echo "Download hugo from $url."
-
-curl -sSfOL "$url"
-dpkg -i "hugo_extended_${VERSION}_linux-amd64.deb"
-rm "hugo_extended_${VERSION}_linux-amd64.deb"
-
-echo "Hugo version: $(hugo version)."