From dbb360cfcf3dbf64796411ddc8c26c3b9dedeb73 Mon Sep 17 00:00:00 2001 From: Gabriel Dunne Date: Sun, 9 Dec 2018 20:50:34 -0800 Subject: [PATCH] Adding publish and serve scripts --- publish.sh | 5 +++++ serve.sh | 3 +++ 2 files changed, 8 insertions(+) create mode 100755 publish.sh create mode 100755 serve.sh 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 -- 2.34.1