web/tools/build.sh

119 lines
2.1 KiB
Bash
Raw Normal View History

2020-01-01 20:21:43 +03:00
#!/bin/bash
#
# Build jekyll site and store site files in ./_site
2020-01-02 16:17:49 +03:00
# v2.0
# https://github.com/cotes2020/jekyll-theme-chirpy
2020-01-01 20:21:43 +03:00
# © 2019 Cotes Chung
# Published under MIT License
set -eu
CMD="JEKYLL_ENV=production bundle exec jekyll b"
2020-08-19 12:05:58 +03:00
WORK_DIR="$(dirname $(dirname $(realpath "$0")))"
2020-01-01 20:21:43 +03:00
2020-08-19 12:05:58 +03:00
CONTAINER="${WORK_DIR}/.container"
2020-01-01 20:21:43 +03:00
2020-08-19 12:05:58 +03:00
DEST="${WORK_DIR}/_site"
2020-01-01 20:21:43 +03:00
2020-04-09 22:15:51 +03:00
_help() {
2020-01-01 20:21:43 +03:00
echo "Usage:"
echo
echo " bash build.sh [options]"
echo
echo "Options:"
echo " -b, --baseurl <URL> The site relative url that start with slash, e.g. '/project'"
echo " -h, --help Print the help information"
echo " -d, --destination <DIR> Destination directory (defaults to ./_site)"
}
2020-04-09 22:15:51 +03:00
_init() {
2020-08-19 12:05:58 +03:00
cd "$WORK_DIR"
2020-01-01 20:21:43 +03:00
2020-08-19 12:05:58 +03:00
if [[ -d "$CONTAINER" ]]; then
rm -rf "$CONTAINER"
2020-01-01 20:21:43 +03:00
fi
2020-08-19 12:05:58 +03:00
if [[ -d "_site" ]]; then
2020-01-01 20:21:43 +03:00
jekyll clean
fi
2020-08-19 12:05:58 +03:00
local _temp="$(mktemp -d)"
cp -r ./* "$_temp"
cp -r ./.git "$_temp"
mv "$_temp" "$CONTAINER"
2020-01-01 20:21:43 +03:00
}
2020-04-09 22:15:51 +03:00
_build() {
2020-08-19 12:05:58 +03:00
cd "$CONTAINER"
2020-01-01 20:21:43 +03:00
echo "$ cd $(pwd)"
2020-04-09 22:15:51 +03:00
2020-08-19 12:05:58 +03:00
bash "_scripts/sh/create_pages.sh"
bash "_scripts/sh/dump_lastmod.sh"
2020-01-01 20:21:43 +03:00
2020-08-19 12:05:58 +03:00
CMD+=" -d $DEST"
2020-01-01 20:21:43 +03:00
echo "\$ $CMD"
2020-08-19 12:05:58 +03:00
eval "$CMD"
2020-01-01 20:21:43 +03:00
echo -e "\nBuild success, the site files have been placed in '${DEST}'."
2020-08-19 12:05:58 +03:00
if [[ -d "${DEST}/.git" ]]; then
if [[ ! -z $(git -C "$DEST" status -s) ]]; then
git -C "$DEST" add .
git -C "$DEST" commit -m "[Automation] Update site files." -q
2020-01-01 20:21:43 +03:00
echo -e "\nPlease push the changes of $DEST to remote master branch.\n"
fi
fi
2020-08-19 12:05:58 +03:00
cd .. && rm -rf "$CONTAINER"
2020-01-01 20:21:43 +03:00
}
2020-04-09 22:15:51 +03:00
_check_unset() {
2020-01-01 20:21:43 +03:00
if [[ -z ${1:+unset} ]]
then
2020-04-09 22:15:51 +03:00
_help
2020-01-01 20:21:43 +03:00
exit 1
fi
}
main() {
while [[ $# -gt 0 ]]
do
opt="$1"
case $opt in
-b|--baseurl)
local _baseurl="$2"
if [[ -z "$_baseurl" ]]; then
_baseurl='""'
2020-01-01 20:21:43 +03:00
fi
CMD+=" -b $_baseurl"
2020-01-01 20:21:43 +03:00
shift
shift
;;
-d|--destination)
2020-08-19 12:05:58 +03:00
_check_unset "$2"
DEST="$(realpath "$2")"
2020-01-01 20:21:43 +03:00
shift;
shift;
;;
-h|--help)
2020-04-09 22:15:51 +03:00
_help
2020-01-01 20:21:43 +03:00
exit 0
;;
*) # unknown option
2020-04-09 22:15:51 +03:00
_help
2020-01-01 20:21:43 +03:00
exit 1
;;
esac
done
2020-04-09 22:15:51 +03:00
_init
_build
2020-01-01 20:21:43 +03:00
}
2020-01-08 23:11:59 +03:00
main "$@"