Commit 28f684037a4f5455c6050ac19d1e5997368b11a9
1 parent
ccc38151af
Revert "allow bundler 1.x releases" from #126
This reverts commit 8153b926de73b4846338c9de00e90d6e5346be3a.
Showing 1 changed file with 2 additions and 2 deletions 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.3' > /dev/null 2>&1) || | 8 | 8 | (gem spec bundler -v '~> 1.2.0' > /dev/null 2>&1) || | |
sudo gem install bundler -v '~> 1.3' --no-rdoc --no-ri | 9 | 9 | sudo gem install bundler -v '~> 1.2.0' --no-rdoc --no-ri | |
10 | 10 | |||
# We don't want old config hanging around. | 11 | 11 | # We don't want old config hanging around. | |
12 | 12 | |||
rm -rf .bundle/config | 13 | 13 | rm -rf .bundle/config | |
rm -rf .librarian/puppet/config | 14 | 14 | rm -rf .librarian/puppet/config |