Blame view
script/bootstrap
547 Bytes
9d3e514b9 Initial commit |
1 2 |
#!/bin/sh # Make sure all our local dependencies are available. |
62a36b906 Fail fast |
3 |
set -e |
9d3e514b9 Initial commit |
4 |
# FIX: only sudo if gem home isn't writable |
28f684037 Revert "allow bun... |
5 |
(gem spec bundler -v '~> 1.2.0' > /dev/null 2>&1) || |
e359be2cb Further clarifica... |
6 |
sudo -p "Need to install Bundler for system ruby, password for sudo: " \ |
53e3c284b Use "sudo -p" wit... |
7 |
gem install bundler -v '~> 1.2.0' --no-rdoc --no-ri |
9d3e514b9 Initial commit |
8 9 10 11 |
# We don't want old config hanging around. rm -rf .bundle/config |
a32baeef4 Remove librarian-... |
12 |
rm -rf .librarian/puppet/config |
9d3e514b9 Initial commit |
13 |
|
9d3e514b9 Initial commit |
14 |
# Bundle install unless we're already up to date. |
d4af4bf81 Update our boxen ... |
15 |
export PATH=$(pwd)/vendor/shims:$PATH |
9d3e514b9 Initial commit |
16 |
bundle install --binstubs bin --path .bundle --quiet "$@" |