Skip to content

Commit 66c5785

Browse files
committed
avoid vendor directory conflict
we have `resources/js/vendor` so we can't exclude `vendor` in `_config.yml` or that directory will get excluded too
1 parent 975fc12 commit 66c5785

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.bundle/config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
---
2-
BUNDLE_PATH: vendor/bundle
2+
BUNDLE_PATH: bundle-vendor/bundle
33
BUNDLE_DISABLE_SHARED_GEMS: '1'

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
_site/
22
.DS_Store
3-
/vendor/bundle/
3+
/bundle-vendor/bundle/
44
/.jekyll-metadata

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This site uses a Jekyll, a Ruby framework. You'll need Ruby and Bundler installe
1010

1111
## Building & Viewing
1212

13-
cd into the directory where you cloned this repository, then install the required gems with `bundle install`. This will automatically put the gems into `./vendor/bundle`.
13+
cd into the directory where you cloned this repository, then install the required gems with `bundle install`. This will automatically put the gems into `./bundle-vendor/bundle`.
1414

1515
Start the server in the context of the bundle:
1616

_config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ devscalaversion: "2.12.0-M3"
55

66
baseurl: ""
77
markdown: kramdown
8+
exclude: [bundle-vendor]

0 commit comments

Comments
 (0)