44

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.

Mark Wilden
  • 2,080
  • 1
  • 15
  • 15
  • My question has been answered; however, I should note that running these commands this way with `git bisect` doesn't seem to work (some kind of SEG fault), so I still have to run them 'manually'. – Mark Wilden Apr 13 '12 at 15:34

1 Answers1

68
git bisect run sh -c 'bundle && bundle exec cucumber'
Fred Foo
  • 355,277
  • 75
  • 744
  • 836