This repository has been archived on 2020-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
codesite/rebuild.sh

67 lines
1008 B
Bash
Raw Normal View History

2015-04-04 06:03:14 +00:00
#!/bin/bash
set -eu
2016-04-18 06:52:56 +00:00
APP_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2015-04-04 06:03:14 +00:00
2016-04-18 06:52:56 +00:00
numcpus() {
cat /proc/cpuinfo | grep '^processor' | wc -l
}
buildsite() {
2018-12-30 01:02:26 +00:00
local site="$1"
2015-04-04 06:03:14 +00:00
2018-12-30 01:02:26 +00:00
echo "Site: ${site}"
(
cd "$site"
2015-04-04 06:03:14 +00:00
2018-12-30 01:02:26 +00:00
echo "Cleaning wwwroot directory..."
2015-04-04 06:29:33 +00:00
2018-12-30 01:02:26 +00:00
if [[ -d wwwroot ]] ; then
rm -r wwwroot
fi
mkdir -p wwwroot/{img,srv,static}
echo "Copying static resources..."
if [[ ! -d static ]] ; then
mkdir static
2015-04-04 06:29:33 +00:00
fi
2018-12-30 01:02:26 +00:00
cp "${APP_DIR}/static/"* wwwroot/static || true
cp static/* wwwroot/static || true
for htm in footer header homepage_blurb ; do
if [[ ! -f "${htm}.htm" ]] ; then
touch "${htm}.htm"
fi
done
2015-04-04 06:29:33 +00:00
2018-12-30 01:02:26 +00:00
echo "Building pages..."
2015-04-04 06:29:33 +00:00
2018-12-30 01:02:26 +00:00
local threadcount=$(numcpus)
for i in $(seq 0 "$threadcount") ; do
"${APP_DIR}/build-worker" "$threadcount" "$i" &
2018-12-30 01:02:26 +00:00
done
wait
echo "Site: ${site} finished."
echo ""
)
2015-04-04 06:29:33 +00:00
}
2016-04-18 06:52:56 +00:00
usage() {
echo "USAGE: ./rebuild.sh path-to-siteroot"
exit 1
}
2015-04-04 06:29:33 +00:00
main() {
2016-04-18 06:52:56 +00:00
if [[ $# -ne 1 ]] ; then
usage
fi
buildsite "$1"
2015-04-04 06:29:33 +00:00
}
main "$@"