aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkballou <kballou@devnulllabs.io>2017-10-08 05:06:37 -0600
committerkballou <kballou@devnulllabs.io>2017-10-08 05:06:37 -0600
commit804426cd754c7d23d9beaa0deff94a615af86e58 (patch)
treecec2f049b4a74059e5ef9f022362f7e26fc4a322
parent5b3e8146b470cf0ab040c33cce42aeae883c2d00 (diff)
downloadblog.kennyballou.com-804426cd754c7d23d9beaa0deff94a615af86e58.tar.gz
blog.kennyballou.com-804426cd754c7d23d9beaa0deff94a615af86e58.tar.xz
Update OUTPUT variable in `Makefile`
This wasn't updated since the repository was split away from the [original][0]. Update the the `deploy` target to properly lands files given the new output layout. [0]: https://git.devnulllabs.io/kennyballou.com.git/
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 74d1c7c..35b25ea 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,5 @@
-OUTPUT=`pwd`/../www/blog/
+OUTPUT=`pwd`/build
+
all: build
.PHONY: build
@@ -7,7 +8,7 @@ build:
.PHONY: deploy
deploy: build
- @rsync -avz ${OUTPUT} kennyballou.com:/srv/www/.
+ @rsync -avz ${OUTPUT}/ kennyballou.com:/srv/www/blog/.
.PHONY: serve
serve: