gitea-pages/mydoc_3_multibuild_web.sh
2016-01-21 17:29:06 -08:00

17 lines
520 B
Bash

kill -9 $(ps aux | grep '[j]ekyll' | awk '{print $2}')
clear
echo "Building Mydoc Writers website..."
jekyll build --config configs/mydoc/config_writers.yml
# jekyll serve --config configs/mydoc/config_writers.yml
echo "done"
echo "Building Mydoc Designers websote..."
jekyll build --config configs/mydoc/config_designers.yml
# jekyll serve --config configs/mydoc/config_designers.yml
echo "done"
echo "All finished building all the web outputs!!!"
echo "Now push the builds to the server with . mydoc_4_publish.sh"