Updated jekyll alias to open site

Sleeps for a few seconds before running open so help ensure that jekyll's up and running while still giving me the ability to CTRL+C to kill jekyll as well.
This commit is contained in:
Josh Sherman 2013-12-23 12:47:11 -05:00
parent 39599fc1b8
commit 6829b76c1e

View file

@ -68,7 +68,7 @@ alias gs="git status"
alias grep="grep --exclude-dir=.git"
# jekyll
alias jekyll="jekyll serve --watch"
alias jekyll="(sleep 2 && open http://localhost:4000) & jekyll serve --watch"
# local tunnel
alias lt="localtunnel -k ~/.ssh/id_rsa.pub 80"