lib/conjur/fpm/debify_utils.sh in conjur-debify-1.1.0 vs lib/conjur/fpm/debify_utils.sh in conjur-debify-1.2.0
- old
+ new
@@ -1,10 +1,10 @@
function bundle_clean() {
ruby_version="$(ruby -v | grep -o '[0-9]\.[0-9]\.[0-9]')"
chmod og+r -R vendor/bundle # some gems have broken perms
- gem install bundler --no-rdoc --no-ri --install-dir ./vendor/bundle/ruby/${ruby_version}
+ gem install bundler:1.11.2 --no-rdoc --no-ri --install-dir ./vendor/bundle/ruby/${ruby_version}
# some cleanup
rm -rf vendor/bundle/ruby/${ruby_version}/cache
rm -rf vendor/bundle/ruby/${ruby_version}/gems/*/{test,spec,examples,example,contrib,doc,ext,sample}
}