From 9d0652fc6ec81619a296329dbd40f95ab250dbf2 Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Tue, 25 Oct 2022 17:53:24 +0300 Subject: [PATCH] docs/Makefile: fix `docs-up` Makefile command after 9ccd22c1f6895047dd768494abca07e84b64b700 --- docs/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/Makefile b/docs/Makefile index 96301a64e8..8164d2588e 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -1,10 +1,13 @@ docs-install: gem install jekyll bundler bundle install --gemfile=Gemfile + # To run localy you need to use ruby version =< 2.7.6, but not >=3.x , see https://bbs.archlinux.org/viewtopic.php?pid=1976408#p1976408 # # run local server for documentation website # at http://127.0.0.1:4000/ # On first use, please run `make docs-install` docs-up: - JEKYLL_GITHUB_TOKEN=blank PAGES_API_URL=http://0.0.0.0 bundle exec --gemfile=Gemfile jekyll serve --livereload + JEKYLL_GITHUB_TOKEN=blank PAGES_API_URL=http://0.0.0.0 bundle exec \ + --gemfile=Gemfile \ + jekyll server --livereload