Skip to content

Commit

Permalink
Allow bootstrap to run without vendored gems
Browse files Browse the repository at this point in the history
  • Loading branch information
bkeepers committed Aug 9, 2016
1 parent d626ed3 commit ec26dac
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
.DS_Store
.jekyll-metadata
_site/
.bundle
bin
vendor
2 changes: 2 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
baseurl: "/open-source-handbook"

exclude:
- bin
- docs
- Gemfile*
- Rakefile
- README.md
- script
- test
- vendor

permalink: /:path/

Expand Down
2 changes: 1 addition & 1 deletion script/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit ec26dac

Please sign in to comment.