Alexander Kuleshov <kuleshovm...@gmail.com> writes: > +test_expect_success "format-patch format.outputDirectory option" ' > + git config format.outputDirectory "patches/" && > + git format-patch master..side && > + cnt=$(ls | wc -l) && > + echo $cnt && > + test $cnt = 3 && > + git config --unset format.outputDirectory > +'
You should probably do: > + test_config format.outputDirectory "patches/" && instead of: > + git config format.outputDirectory "patches/" && > [...] > + git config --unset format.outputDirectory This way there shouldn't be any problem with the tests following yours if your test fails in the middle. RĂ©mi -- To unsubscribe from this list: send the line "unsubscribe git" in