From: Gabriel Dunne Date: Mon, 10 Dec 2018 04:50:34 +0000 (-0800) Subject: Adding publish and serve scripts X-Git-Url: https://git.dabkitsch.com/?a=commitdiff_plain;h=dbb360cfcf3dbf64796411ddc8c26c3b9dedeb73;p=jekyll-site.git Adding publish and serve scripts --- diff --git a/publish.sh b/publish.sh new file mode 100755 index 0000000..8970979 --- /dev/null +++ b/publish.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +jekyll build + +rsync -avz _site/ jlubow@dabkitsch.com:/home/jlubow/dabkitsch.com/ # --delete diff --git a/serve.sh b/serve.sh new file mode 100755 index 0000000..96498fa --- /dev/null +++ b/serve.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +jekyll serve watch