aboutsummaryrefslogtreecommitdiff
path: root/.travis/setup.sh
blob: ae1a0438b21a4cdd83e170186dbd2f0e8f86b1a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

# THIS FILE IS MANAGED BY MODULESYNC

rm -f Gemfile.lock
if [ "${PUPPET_VERSION}" = '~> 4.0' ]; then
  gem install bundler -v '< 2' --no-rdoc --no-ri;
else
  gem update --system;
  gem update bundler;
  bundle --version;
fi