summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2021-02-08 14:05:55 -0800
committerLibravatar Junio C Hamano <gitster@pobox.com>2021-02-08 14:05:55 -0800
commitf20aeed2358eb3a41d187b98dae1c5af731ca21f (patch)
tree487895a20f23c3954439efe0506415edcd3a6711 /t
parentMerge branch 'jk/p5303-sed-portability-fix' into maint (diff)
parentannotate-tests: quote variable expansions containing path names (diff)
downloadtgif-f20aeed2358eb3a41d187b98dae1c5af731ca21f.tar.xz
Merge branch 'pb/blame-funcname-range-userdiff' into maint
Test fix. * pb/blame-funcname-range-userdiff: annotate-tests: quote variable expansions containing path names
Diffstat (limited to 't')
-rw-r--r--t/annotate-tests.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/t/annotate-tests.sh b/t/annotate-tests.sh
index 3aee61d2cc..a2e46572d5 100644
--- a/t/annotate-tests.sh
+++ b/t/annotate-tests.sh
@@ -483,12 +483,12 @@ test_expect_success 'setup -L :funcname with userdiff driver' '
echo "fortran-* diff=fortran" >.gitattributes &&
fortran_file=fortran-external-function &&
orig_file="$TEST_DIRECTORY/t4018/$fortran_file" &&
- cp $orig_file . &&
- git add $fortran_file &&
+ cp "$orig_file" . &&
+ git add "$fortran_file" &&
GIT_AUTHOR_NAME="A" GIT_AUTHOR_EMAIL="A@test.git" \
git commit -m "add fortran file" &&
- sed -e "s/ChangeMe/IWasChanged/" <"$orig_file" >$fortran_file &&
- git add $fortran_file &&
+ sed -e "s/ChangeMe/IWasChanged/" <"$orig_file" >"$fortran_file" &&
+ git add "$fortran_file" &&
GIT_AUTHOR_NAME="B" GIT_AUTHOR_EMAIL="B@test.git" \
git commit -m "change fortran file"
'