From 460b734b9ed00423d08911401b079eac0c9a5745 Mon Sep 17 00:00:00 2001 From: Sarah Mei Date: Sat, 3 Sep 2011 19:07:25 -0700 Subject: [PATCH] Must bundle exec rake on travis to avoid stack-level-too-deep rake errors. --- config/ci/before-travis.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/ci/before-travis.sh b/config/ci/before-travis.sh index e8e9b2a22..22e0ca288 100755 --- a/config/ci/before-travis.sh +++ b/config/ci/before-travis.sh @@ -21,5 +21,5 @@ sass --update public/stylesheets/sass/:public/stylesheets/ cp config/database.yml.example config/database.yml which rake rake --version -rake db:create --trace -rake db:schema:load --trace +bundle exec rake db:create --trace +bundle exec rake db:schema:load --trace