Closed jason-o-matic closed 8 years ago
I have my default rake command set to a chain of commands:
["db:test:prepare", :spec, "spec:javascript", :cucumber, :outdated, :audit]
Because https://github.com/searls/jasmine-rails/blob/master/lib/tasks/jasmine-rails_tasks.rake#L11 uses exec instead of system if means the initial rake process dies.
exec
system
rake
I should have a PR that switches this to system in a few minutes.
I have my default rake command set to a chain of commands:
Because https://github.com/searls/jasmine-rails/blob/master/lib/tasks/jasmine-rails_tasks.rake#L11 uses
exec
instead ofsystem
if means the initialrake
process dies.I should have a PR that switches this to
system
in a few minutes.