Update script/bootstrap sudo to pass environment variables.
When executing a boxen run from inside the corporate firewall we need to pass proxies through to sudo so that bundler will be installed properly as root.
This commit is contained in:
parent
20e241539a
commit
79a74a6555
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ set -e
|
|||
# FIX: only sudo if gem home isn't writable
|
||||
|
||||
(/usr/bin/gem list -i bundler -v '~> 1.3.0' > /dev/null) || {
|
||||
/usr/bin/sudo -p "Need to install Bundler for system ruby, password for sudo: " \
|
||||
/usr/bin/sudo -E -p "Need to install Bundler for system ruby, password for sudo: " \
|
||||
/usr/bin/gem install bundler -v '~> 1.3.0' --no-rdoc --no-ri
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue