1
0
Fork 0
my-boxen/script/bootstrap

24 lines
544 B
Bash
Executable File

#!/bin/sh
# Make sure all our local dependencies are available.
# 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
# Export CC to explicitly set the compiler used for cexts.
export CC=gcc
# Bundle install unless we're already up to date.
bundle install --binstubs bin --path .bundle --quiet "$@"
# Install all our Puppet dependencies.
bin/librarian-puppet install --path=shared