aboutsummaryrefslogtreecommitdiff
path: root/services/docker/blog/update.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
commit046c71c4c282b7c9dce781c8a1f31c68a1515854 (patch)
tree48e72e89b22c569d716bf66e746ed4a8a0fbfd98 /services/docker/blog/update.bash
parent471cacdd706002df81f5bee03729b8fca6c98f37 (diff)
downloadcrupest-046c71c4c282b7c9dce781c8a1f31c68a1515854.tar.gz
crupest-046c71c4c282b7c9dce781c8a1f31c68a1515854.tar.bz2
crupest-046c71c4c282b7c9dce781c8a1f31c68a1515854.zip
feat(www): YEAH!
Diffstat (limited to 'services/docker/blog/update.bash')
-rwxr-xr-xservices/docker/blog/update.bash30
1 files changed, 0 insertions, 30 deletions
diff --git a/services/docker/blog/update.bash b/services/docker/blog/update.bash
deleted file mode 100755
index d4bcadc..0000000
--- a/services/docker/blog/update.bash
+++ /dev/null
@@ -1,30 +0,0 @@
-#! /usr/bin/env bash
-
-set -e
-
-echo -e "\e[0;103m\e[K\e[1mBegin to build blog...\e[0m"
-echo "Begin time: $(date +%Y-%m-%dT%H:%M:%SZ)"
-
-mkdir -p /public
-
-# check /blog directory exists
-if [[ ! -d /blog ]]; then
- echo "Directory /blog not found, clone blog repository..."
- git clone https://github.com/crupest/blog.git /blog
- cd /blog
- git submodule update --init --recursive
-else
- echo "Directory /blog founded, update blog repository..."
- cd /blog
- git fetch -p
- git reset --hard origin/master
- git submodule update --init --recursive
-fi
-
-# Now hugo it
-echo "Run hugo to generate blog..."
-hugo -d /public
-
-echo "Finish time: $(date +%Y-%m-%dT%H:%M:%SZ)"
-echo -e "\e[0;102m\e[K\e[1mFinish build!\e[0m"
-