From 3a7a5a508b26d3cfc4aa2ae88a2ba0e67e2abe87 Mon Sep 17 00:00:00 2001 From: Eric Slosser Date: Fri, 4 Dec 2020 17:15:08 -0500 Subject: [PATCH] set bundler path locally, not globally --- scripts/bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bootstrap b/scripts/bootstrap index 61057d06..7ca708cb 100755 --- a/scripts/bootstrap +++ b/scripts/bootstrap @@ -9,7 +9,7 @@ if ! command -v bundle > /dev/null; then exit 1 fi -bundle config set path 'vendor/bundle' +bundle config set path --local 'vendor/bundle' bundle install cd "Examples"