diff options
| author | Junio C Hamano <gitster@pobox.com> | 2021-05-27 12:36:57 +0900 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2021-05-27 12:36:57 +0900 |
| commit | 2f0ca413491cff630ed4fc8427b2e87201674b7b (patch) | |
| tree | 1d3b1b8c5e6759ab1189ebbb43e4a6ad8fe33c96 | |
| parent | f4d715b0acaf008d0f09c42378cac90acaadea8e (diff) | |
| parent | ea08db7473318798527361d4b85a67d9a1325eb4 (diff) | |
| download | git-2f0ca413491cff630ed4fc8427b2e87201674b7b.tar.xz | |
Merge branch 'mt/t2080-cp-symlink-fix'
Test portability fix.
* mt/t2080-cp-symlink-fix:
t2080: fix cp invocation to copy symlinks instead of following them
| -rwxr-xr-x | t/t2080-parallel-checkout-basics.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t2080-parallel-checkout-basics.sh b/t/t2080-parallel-checkout-basics.sh index 7087818550..3e0f8c675f 100755 --- a/t/t2080-parallel-checkout-basics.sh +++ b/t/t2080-parallel-checkout-basics.sh @@ -114,7 +114,7 @@ do test_expect_success "$mode checkout" ' repo=various_$mode && - cp -R various $repo && + cp -R -P various $repo && # The just copied files have more recent timestamps than their # associated index entries. So refresh the cached timestamps |
