Hi, On 2015-07-19 08:54, Johannes Sixt wrote: > Am 18.07.2015 um 17:21 schrieb Ben Walton: >> test_expect_success "clone ssh://$tuah/home/user/repo" " >> test_clone_url ssh://$tuah/home/user/repo $ehost /home/user/repo >> " >> diff --git a/t/t9500-gitweb-standalone-no-errors.sh b/t/t9500-gitweb-standalone-no-errors.sh >> index e94b2f1..eb264f9 100755 >> --- a/t/t9500-gitweb-standalone-no-errors.sh >> +++ b/t/t9500-gitweb-standalone-no-errors.sh >> @@ -290,8 +290,7 @@ test_expect_success 'setup incomplete lines' ' >> echo "incomplete" | tr -d "\\012" >>file && >> git commit -a -m "Add incomplete line" && >> git tag incomplete_lines_add && >> - sed -e s/CHANGE_ME/change_me/ <file >file+ && >> - mv -f file+ file && >> + perl -pi -e "s/CHANGE_ME/change_me/" file && > > This is problematic. On Windows, perl -i fails when no backup file > extension is specified because perl attempts to replace a file that is > still open; that does not work on Windows. Let's qualify this a bit better: it actually works with the SDK of Git for Windows 2.x. It is therefore incomplete and partially incorrect to say "that does not work on Windows". It is true that Git for Windows 1.x' perl bails out with "Can't do inplace edit". > This should work, but I haven't tested, yet: > > perl -pi.bak -e "s/CHANGE_ME/change_me/" file && This works, of course, but it leaves an extra file behind. I really wonder why the previous ">file+ && mv -f file+ file" dance needs to be replaced? Ciao, Johannes -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html