🛠 Ensure local yml always exists

This commit is contained in:
Dan Jones 2020-02-20 16:48:05 -06:00
commit cb5ba1429d

View file

@ -9,7 +9,10 @@ all: serve
build-image:
docker build -t $(IMAGE) .
_site/index.html: build-image
_config.local.yml:
touch $@
_site/index.html: build-image _config.local.yml
docker run -u $(shell id -u) --rm -v $(shell pwd):/app -w /app $(IMAGE) bundle exec jekyll build -c '_config.yml,_config.local.yml'
serve: _site/index.html