Commit ebf3abbcb75f681e1de2bad42409208c3fdfcfa8
Merge pull request #136 from paxan/warn-about-sudo
Minor nit: be informative about impending "sudo" activity.
Showing 1 changed file Inline Diff
script/bootstrap
#!/bin/sh | 1 | 1 | #!/bin/sh | |
# Make sure all our local dependencies are available. | 2 | 2 | # Make sure all our local dependencies are available. | |
3 | 3 | |||
set -e | 4 | 4 | set -e | |
5 | 5 | |||
# FIX: only sudo if gem home isn't writable | 6 | 6 | # FIX: only sudo if gem home isn't writable | |
7 | 7 | |||
(gem spec bundler -v '~> 1.2.0' > /dev/null 2>&1) || | 8 | 8 | (gem spec bundler -v '~> 1.2.0' > /dev/null 2>&1) || | |
sudo gem install bundler -v '~> 1.2.0' --no-rdoc --no-ri | 9 | 9 | sudo -p "Need to install Bundler for system ruby, password for sudo: " \ | |
10 | gem install bundler -v '~> 1.2.0' --no-rdoc --no-ri | |||
10 | 11 | |||
# We don't want old config hanging around. | 11 | 12 | # We don't want old config hanging around. | |
12 | 13 | |||
rm -rf .bundle/config | 13 | 14 | rm -rf .bundle/config |