From 804426cd754c7d23d9beaa0deff94a615af86e58 Mon Sep 17 00:00:00 2001 From: kballou Date: Sun, 8 Oct 2017 05:06:37 -0600 Subject: 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/ --- Makefile | 5 +++-- 1 file 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: -- cgit v1.2.1