diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-05-06 02:16:30 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-05-06 02:16:30 +0200 |
commit | bd4ccf4abafb7348a0034b1b0030c735d0f45817 (patch) | |
tree | 8b08febbc3800eedd52f3e80b7802554f0a14bd0 /Makefile | |
parent | bump dependencies (diff) | |
download | jekyll-theme-bd4ccf4abafb7348a0034b1b0030c735d0f45817.tar.gz jekyll-theme-bd4ccf4abafb7348a0034b1b0030c735d0f45817.zip |
move Jekyll options to _config.yml
Diffstat (limited to '')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -31,13 +31,15 @@ ruby: deps: ruby bundle install +jekyll := bundle exec jekyll + .PHONY: build build: - bundle exec jekyll build --drafts + $(jekyll) build .PHONY: serve serve: - bundle exec jekyll serve --drafts --host 0.0.0.0 + $(jekyll) serve URL := http://localhost:4000/jekyll-theme/ |