From ec26dacf1ddc37beb45a2ca8d80ee5c366292c9a Mon Sep 17 00:00:00 2001 From: Brandon Keepers Date: Tue, 9 Aug 2016 11:10:20 -0500 Subject: [PATCH] Allow bootstrap to run without vendored gems --- .gitignore | 3 +++ _config.yml | 2 ++ script/bootstrap | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b242b82b882..653d0b0d144 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ .DS_Store .jekyll-metadata _site/ +.bundle +bin +vendor diff --git a/_config.yml b/_config.yml index 2493fc4888e..7bb0deb670d 100644 --- a/_config.yml +++ b/_config.yml @@ -1,12 +1,14 @@ baseurl: "/open-source-handbook" exclude: + - bin - docs - Gemfile* - Rakefile - README.md - script - test + - vendor permalink: /:path/ diff --git a/script/bootstrap b/script/bootstrap index 19667e454d3..599f07e2e7d 100755 --- a/script/bootstrap +++ b/script/bootstrap @@ -5,5 +5,5 @@ export CC=gcc echo "==> Installing gem dependencies…" bundle check --path vendor/gems 2>&1 > /dev/null || { - time bundle install --binstubs bin --path vendor/gems --local --quiet + time bundle install --binstubs bin --path vendor/gems }