First working version
This commit is contained in:
33
rebuild.sh
Executable file
33
rebuild.sh
Executable file
@@ -0,0 +1,33 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -eu
|
||||
|
||||
REPO_PATH=/run/repo
|
||||
WEB_PATH=/run/html
|
||||
|
||||
. /app/data/config.sh
|
||||
|
||||
if [ "$REPO_URL" == "" ]; then
|
||||
echo "No REPO_URL set!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if ! [ -d "$REPO_PATH" ]; then
|
||||
git clone "$REPO_URL" "$REPO_PATH"
|
||||
(cd "$REPO_PATH" && git submodule init)
|
||||
fi
|
||||
|
||||
cd "$REPO_PATH"
|
||||
git pull
|
||||
git submodule update
|
||||
|
||||
zola build
|
||||
|
||||
echo "Compressing files..."
|
||||
find public -type f -name '*.css' -size +5k -exec zopfli '{}' \;
|
||||
find public -type f -name '*.js' -size +5k -exec zopfli '{}' \;
|
||||
find public -type f -name '*.html' -size +5k -exec zopfli '{}' \;
|
||||
|
||||
echo "Updating webpage..."
|
||||
mkdir -p "$WEB_PATH"
|
||||
rsync -av --del public/ "$WEB_PATH/"
|
||||
Reference in New Issue
Block a user