Last active
February 15, 2017 08:54
-
-
Save judas-christ/9402f60f42aeb60ab5058f44f1e097a8 to your computer and use it in GitHub Desktop.
Run gulp watch and jekyll serve in parallell, kill both with the stroke of a key. Or two.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
trap "kill $GULPPID && trap - SIGINT" SIGINT && gulp & GULPPID=$! & bundle exec jekyll serve |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment