gitbisect

Run two commands during git bisect run


I would essentially like to do git bisect run 'bundle && bundle exec cucumber'.

I want to do this on the commandline - I don't want to write a shell script.


Solution

  • git bisect run sh -c 'bundle && bundle exec cucumber'