2017-04-21 02:28:54 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# mfdoc
|
|
|
|
#
|
|
|
|
# Start Jekyll in watch mode to work on Marlin Documentation and preview locally
|
|
|
|
#
|
|
|
|
|
2017-07-03 01:43:57 +00:00
|
|
|
[[ $# == 0 ]] || { echo "Usage: `basename $0`" 1>&2 ; exit 1; }
|
|
|
|
|
|
|
|
MFINFO=$(mfinfo "$@") || exit 1
|
2017-04-21 02:28:54 +00:00
|
|
|
IFS=' ' read -a INFO <<< "$MFINFO"
|
|
|
|
ORG=${INFO[0]}
|
|
|
|
REPO=${INFO[2]}
|
2017-07-03 01:43:57 +00:00
|
|
|
BRANCH=${INFO[5]}
|
2017-04-21 02:28:54 +00:00
|
|
|
|
2017-07-03 01:43:57 +00:00
|
|
|
[[ $ORG == "MarlinFirmware" && $REPO == "MarlinDocumentation" ]] || { echo "Wrong repository." 1>&2; exit 1; }
|
2017-04-21 02:28:54 +00:00
|
|
|
|
|
|
|
opensite() {
|
|
|
|
TOOL=$(which gnome-open xdg-open open | awk '{ print $1 }')
|
|
|
|
URL="http://127.0.0.1:4000/"
|
|
|
|
if [ -z "$TOOL" ]; then
|
|
|
|
echo "Can't find a tool to open the URL:"
|
|
|
|
echo $URL
|
|
|
|
else
|
|
|
|
echo "Opening preview site in the browser..."
|
|
|
|
"$TOOL" "$URL"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
echo "Previewing MarlinDocumentation..."
|
|
|
|
|
|
|
|
# wait to open the url for about 8s
|
2017-05-07 06:22:45 +00:00
|
|
|
( sleep 45; opensite ) &
|
2017-04-21 02:28:54 +00:00
|
|
|
|
|
|
|
bundle exec jekyll serve --watch --incremental
|