]> git.dabkitsch.com - jekyll-site.git/commitdiff
Adding publish and serve scripts
authorGabriel Dunne <gdunne@quilime.com>
Mon, 10 Dec 2018 04:50:34 +0000 (20:50 -0800)
committerGabriel Dunne <gdunne@quilime.com>
Mon, 10 Dec 2018 04:50:34 +0000 (20:50 -0800)
publish.sh [new file with mode: 0755]
serve.sh [new file with mode: 0755]

diff --git a/publish.sh b/publish.sh
new file mode 100755 (executable)
index 0000000..8970979
--- /dev/null
@@ -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 (executable)
index 0000000..96498fa
--- /dev/null
+++ b/serve.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+jekyll serve watch