1
0
Fork 0
mirror of https://github.com/pry/pry-rails.git synced 2022-11-09 12:36:03 -05:00

Fix minor init_test_app bug

This commit is contained in:
Ryan Fitzgerald 2012-07-18 17:05:55 -07:00
parent d88ed9ae91
commit b528d94590

View file

@ -28,7 +28,8 @@ task :init_test_app => 'appraisal:install' do
system 'env BUNDLE_GEMFILE=../../gemfiles/rails30.gemfile bundle exec rake db:migrate'
# Replace generated models
cp_r 'test/models/', 'test/app/app/models/'
cd '../..'
cp_r 'test/models', 'test/app/app/models'
end
desc 'Start the Rails server'