Fix destinations for building.
This commit is contained in:
parent
3c7daed5d3
commit
35b8e8bce8
8
Makefile
8
Makefile
@ -1,13 +1,13 @@
|
|||||||
DEV_DIST_DIR:=./devdist/
|
DEV_DIST_DIR:=./dist/
|
||||||
PROD_DIST_DIR:=./dist/
|
PROD_DIST_DIR:=./proddist/
|
||||||
|
|
||||||
devserver:
|
devserver:
|
||||||
@echo "Serving development site from $(DEV_DIST_DIR)"
|
@echo "Serving development site from $(DEV_DIST_DIR)"
|
||||||
@jekyll serve --watch --incremental --destination devdist
|
@jekyll serve --watch --incremental --destination $(DEV_DIST_DIR)
|
||||||
|
|
||||||
proddist:
|
proddist:
|
||||||
@echo "Building production site into $(PROD_DIST_DIR)"
|
@echo "Building production site into $(PROD_DIST_DIR)"
|
||||||
@jekyll build
|
@jekyll build --destination $(PROD_DIST_DIR)
|
||||||
|
|
||||||
release:
|
release:
|
||||||
@echo "Pushing $(PROD_DIST_DIR) contents to the upstream production branch"
|
@echo "Pushing $(PROD_DIST_DIR) contents to the upstream production branch"
|
||||||
|
Reference in New Issue
Block a user