This commit is contained in:
newnius
2016-11-11 18:33:18 +08:00
commit 435e692e40
3 changed files with 28 additions and 0 deletions

9
hexo/bootstrap.sh Executable file
View File

@@ -0,0 +1,9 @@
#! /bin/bash
if [ "$1" == "server" ]; then
# start hexo server
hexo server
else
# do nothing, just wait
while true; do sleep 1000; done
fi