diff options
Diffstat (limited to 'third_party/git/t/t4005-diff-rename-2.sh')
-rwxr-xr-x | third_party/git/t/t4005-diff-rename-2.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/git/t/t4005-diff-rename-2.sh b/third_party/git/t/t4005-diff-rename-2.sh index f542d2929d23..d18a80493c22 100755 --- a/third_party/git/t/t4005-diff-rename-2.sh +++ b/third_party/git/t/t4005-diff-rename-2.sh @@ -14,8 +14,8 @@ test_expect_success 'setup reference tree' ' git update-index --add COPYING rezrov && tree=$(git write-tree) && echo $tree && - sed -e 's/HOWEVER/However/' <COPYING >COPYING.1 && - sed -e 's/GPL/G.P.L/g' <COPYING >COPYING.2 && + sed -e "s/HOWEVER/However/" <COPYING >COPYING.1 && + sed -e "s/GPL/G.P.L/g" <COPYING >COPYING.2 && origoid=$(git hash-object COPYING) && oid1=$(git hash-object COPYING.1) && oid2=$(git hash-object COPYING.2) |