Setting env var BUNDLE_PATH
is futile.
https://travis-ci.org/jayvdb/coala-bears/jobs/560498307
The default ruby install
script is bundle install --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
“vendor/bundle” should be a default, and the value used if BUNDLE_PATH
is set.
But if it is set, a printenv
at the top shows it has been unset.
https://github.com/travis-ci/travis-build/pull/1100 touches on this.
And the cache: bundler
uses directory vendor/bundle
irrespective of what the envvar was set to.
If this envvar can not be changed, the default install command shouldnt show it as a variable with a default value, because it leads people to think it can be modified.