From 4fe7572f10b208ae6c9848e154ff7a3f22cebf85 Mon Sep 17 00:00:00 2001 From: ocaisa Date: Fri, 10 Jul 2020 15:57:55 +0200 Subject: [PATCH 1/2] Deprecated use of --path when installing bundle --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 366840ec..e42e7695 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ export SHELL = /bin/bash # Settings MAKEFILES=Makefile $(wildcard *.mk) -JEKYLL=bundle install --path .vendor/bundle && bundle update && bundle exec jekyll +JEKYLL=bundle config set path '.vendor/bundle' && bundle install && bundle update && bundle exec jekyll PARSER=bin/markdown_ast.rb DST=_site From 62fbf35747f485414cdf65f9645a1430af87ae7d Mon Sep 17 00:00:00 2001 From: ocaisa Date: Fri, 10 Jul 2020 16:31:14 +0200 Subject: [PATCH 2/2] Make sure not to set bundle options globally --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e42e7695..37c7b2c8 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ export SHELL = /bin/bash # Settings MAKEFILES=Makefile $(wildcard *.mk) -JEKYLL=bundle config set path '.vendor/bundle' && bundle install && bundle update && bundle exec jekyll +JEKYLL=bundle config --local set path .vendor/bundle && bundle install && bundle update && bundle exec jekyll PARSER=bin/markdown_ast.rb DST=_site