Skip to content

Commit 50acb48

Browse files
mtelkagitster
authored andcommitted
t/t1700-split-index.sh: mv -v is not portable
The -v option for mv is not specified by POSIX. The illumos implementation of mv does not support -v. Since we do not need the verbose mv output we just drop -v for mv. Signed-off-by: Marcel Telka <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 05e5ff0 commit 50acb48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/t1700-split-index.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ test_expect_success 'reading split index at alternate location' '
527527
528528
# ... and, for backwards compatibility, in the current GIT_DIR
529529
# as well.
530-
mv -v ./reading-alternate-location/.git/sharedindex.* .git &&
530+
mv ./reading-alternate-location/.git/sharedindex.* .git &&
531531
GIT_INDEX_FILE=./reading-alternate-location/.git/index \
532532
git ls-files --cached >actual &&
533533
test_cmp expect actual

0 commit comments

Comments
 (0)