We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eb3de5b + 756fb0d commit 1ef3bd3Copy full SHA for 1ef3bd3
t/t4014-format-patch.sh
@@ -1610,8 +1610,9 @@ test_expect_success 'format-patch format.outputDirectory option' '
1610
test_config format.outputDirectory patches &&
1611
rm -fr patches &&
1612
git format-patch master..side &&
1613
- git rev-list master..side >list &&
1614
- test_line_count = $(ls patches | wc -l) list
+ count=$(git rev-list --count master..side) &&
+ ls patches >list &&
1615
+ test_line_count = $count list
1616
'
1617
1618
test_expect_success 'format-patch -o overrides format.outputDirectory' '
0 commit comments