topaz2/chef_boilerplate_php

View on GitHub
files/default/tools/build/jenkins/chef_boilerplate_php/pre.sh

Summary

Maintainability
Test Coverage
#!/bin/bash -ex

if [ -w "Berksfile.lock" -a "$UPGRADE_DEPENDENCIES" = "true" ]
then
  bundle update
  berks update
else
  bundle install --without development
  berks install -e development
fi