From 78bf87614a420ff2b87bf4327d90b4844f31100c Mon Sep 17 00:00:00 2001 From: Rohan Mitchell Date: Wed, 15 Apr 2015 13:59:37 +1000 Subject: [PATCH] Buildkite: Symlink config/application.yml if not present --- script/run_tests.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/script/run_tests.sh b/script/run_tests.sh index 17c0d37ec8..b1bc35b61a 100755 --- a/script/run_tests.sh +++ b/script/run_tests.sh @@ -4,6 +4,9 @@ set -e echo "--- Loading environment" source /var/lib/jenkins/.rvm/environments/ruby-1.9.3-p392 +if [ ! -f config/application.yml ]; then + ln -s config/application.yml.example config/application.yml +fi echo "--- Bundling" bundle install