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.
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.
git bisect run sh -c 'bundle && bundle exec cucumber'
If you change the command to (notice addition of exec
for second command):
git bisect run sh -c 'bundle && exec bundle exec cucumber'
It seems to have the correct behavior. I believe the exit code behavior is modified if the shell has the command has a child process.
© 2022 - 2024 — McMap. All rights reserved.