aboutsummaryrefslogtreecommitdiff
path: root/services/docker/nginx/install-hugo.bash
diff options
context:
space:
mode:
authorYuqian Yang <crupest@crupest.life>2025-03-03 16:58:21 +0800
committerYuqian Yang <crupest@crupest.life>2025-03-03 16:58:21 +0800
commitcfa5ea2f4a8fd79136cfe95ad1fdfe88d52eece8 (patch)
treec19d51134b8fed16ee10f8097a8e105462b75833 /services/docker/nginx/install-hugo.bash
parent69c050e349956f4c982f7e73a09f9a0882f1973f (diff)
downloadcrupest-cfa5ea2f4a8fd79136cfe95ad1fdfe88d52eece8.tar.gz
crupest-cfa5ea2f4a8fd79136cfe95ad1fdfe88d52eece8.tar.bz2
crupest-cfa5ea2f4a8fd79136cfe95ad1fdfe88d52eece8.zip
feat(www): update page and use hugo image.
Diffstat (limited to 'services/docker/nginx/install-hugo.bash')
-rwxr-xr-xservices/docker/nginx/install-hugo.bash15
1 files changed, 0 insertions, 15 deletions
diff --git a/services/docker/nginx/install-hugo.bash b/services/docker/nginx/install-hugo.bash
deleted file mode 100755
index dcf6800..0000000
--- a/services/docker/nginx/install-hugo.bash
+++ /dev/null
@@ -1,15 +0,0 @@
-#! /usr/bin/env bash
-
-set -e
-
-apt-get update
-apt-get install -y locales curl
-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"
-curl -fOL "$url"
-dpkg -i "hugo_extended_${VERSION}_linux-amd64.deb"
-rm "hugo_extended_${VERSION}_linux-amd64.deb"
-hugo version