Run two commands during git bisect run

bisect, git

Solution

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

Problem

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.

Original source