diff options
| author | Junio C Hamano <gitster@pobox.com> | 2025-05-15 17:24:56 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-05-15 17:24:57 -0700 |
| commit | 38fc27881976fdb1f66db88f3beb38ce4c7c82c5 (patch) | |
| tree | 946a78fd1bbd7507aa85d33f4a2f6ad8b413e4e7 | |
| parent | Merge branch 'dd/meson-perl-custom-path' (diff) | |
| parent | t6011: fix misconversion from perl to sed (diff) | |
| download | git-38fc27881976fdb1f66db88f3beb38ce4c7c82c5.tar.gz git-38fc27881976fdb1f66db88f3beb38ce4c7c82c5.zip | |
Merge branch 'jc/t6011-mv-ro-fix'
Test fix.
* jc/t6011-mv-ro-fix:
t6011: fix misconversion from perl to sed
Diffstat (limited to '')
| -rwxr-xr-x | t/t6011-rev-list-with-bad-commit.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/t6011-rev-list-with-bad-commit.sh b/t/t6011-rev-list-with-bad-commit.sh index b6f3344dbf..1dd1e50d21 100755 --- a/t/t6011-rev-list-with-bad-commit.sh +++ b/t/t6011-rev-list-with-bad-commit.sh @@ -38,6 +38,7 @@ test_expect_success 'verify number of revisions' \ test_expect_success 'corrupt second commit object' ' for p in .git/objects/pack/*.pack do + chmod +w "$p" && sed "s/second commit/socond commit/" "$p" >"$p.munged" && mv "$p.munged" "$p" || return 1 |
