From 35b8e8bce80d652711095c25bd48406ad07f3dfa Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Wed, 4 Oct 2017 16:53:19 +0200 Subject: [PATCH] Fix destinations for building. --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 1941bec..a4cd356 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,13 @@ -DEV_DIST_DIR:=./devdist/ -PROD_DIST_DIR:=./dist/ +DEV_DIST_DIR:=./dist/ +PROD_DIST_DIR:=./proddist/ devserver: @echo "Serving development site from $(DEV_DIST_DIR)" - @jekyll serve --watch --incremental --destination devdist + @jekyll serve --watch --incremental --destination $(DEV_DIST_DIR) proddist: @echo "Building production site into $(PROD_DIST_DIR)" - @jekyll build + @jekyll build --destination $(PROD_DIST_DIR) release: @echo "Pushing $(PROD_DIST_DIR) contents to the upstream production branch"