diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-05-06 02:24:09 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-05-06 02:24:09 +0200 |
commit | 81c13ac0ec5727f92e21d716c857289d17f163fe (patch) | |
tree | 404578752f5242b3f97c69b5d00ba9083be3ddc0 /Makefile | |
parent | bump dependencies (diff) | |
download | sorting-algorithms-81c13ac0ec5727f92e21d716c857289d17f163fe.tar.gz sorting-algorithms-81c13ac0ec5727f92e21d716c857289d17f163fe.zip |
move Jekyll options to _config.yml
Diffstat (limited to 'Makefile')
-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/sorting-algorithms/ |