my-boxen/script/bootstrap
2013-02-12 16:41:56 -08:00

19 lines
463 B
Bash
Executable file

#!/bin/sh
# Make sure all our local dependencies are available.
set -e
# FIX: only sudo if gem home isn't writable
(gem spec bundler -v '~> 1.2.0' > /dev/null 2>&1) ||
sudo gem install bundler --no-rdoc --no-ri
# We don't want old config hanging around.
rm -rf .bundle/config
rm -rf .librarian/puppet/config
# Bundle install unless we're already up to date.
export PATH=$(pwd)/vendor/shims:$PATH
bundle install --binstubs bin --path .bundle --quiet "$@"