Browse Source

Have 'mfdoc' open the local site when it's ready

pull/1/head
Scott Lahteine 6 years ago
parent
commit
c4734b947b
  1. 11
      buildroot/share/git/mfdoc

11
buildroot/share/git/mfdoc

@ -29,7 +29,10 @@ opensite() {
echo "Previewing MarlinDocumentation..."
# wait to open the url for about 8s
( sleep 45; opensite ) &
bundle exec jekyll serve --watch --incremental
bundle exec jekyll serve --watch --incremental | {
while IFS= read -r line
do
[[ $line =~ "Server running" ]] && opensite
echo "$line"
done
}

Loading…
Cancel
Save