Skip to content

Commit ce09c69

Browse files
mtelkagitster
authored andcommitted
t/t0600-reffiles-backend.sh: rm -v is not portable
The -v option for rm is not specified by POSIX. The illumos implementation of rm does not support -v. Since we do not need the verbose rm output we just drop -v for rm. Signed-off-by: Marcel Telka <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent ba1dec3 commit ce09c69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/t0600-reffiles-backend.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ test_expect_success SYMLINKS 'git branch -m with symlinked .git/refs' '
424424
test_when_finished "rm -rf subdir" &&
425425
git init --bare subdir &&
426426
427-
rm -rfv subdir/refs subdir/objects subdir/packed-refs &&
427+
rm -rf subdir/refs subdir/objects subdir/packed-refs &&
428428
ln -s ../.git/refs subdir/refs &&
429429
ln -s ../.git/objects subdir/objects &&
430430
ln -s ../.git/packed-refs subdir/packed-refs &&

0 commit comments

Comments
 (0)