Skip to content

Commit 35d4d9f

Browse files
authored
Merge pull request GitoxideLabs#1646 from EliahKagan/run-ci/portable-rm
Drop `-v` from `rm` and `cp` commands in fixtures for portability
2 parents 22209fd + dffb694 commit 35d4d9f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gix-dir/tests/fixtures/many.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ git init expendable-and-precious-nested-in-ignored-dir
280280
echo 'ignored/' > .gitignore
281281
git add .gitignore && git commit -m "init"
282282
mkdir -p ignored/other
283-
cp -Rv ../expendable-and-precious ignored/d
283+
cp -R ../expendable-and-precious ignored/d
284284
rm -Rf ignored/d/*-by-filematch ignored/d/some-*
285285
mkdir -p other/ignored && >other/ignored/a
286286
)

gix-discover/tests/fixtures/make_basic_repo.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ rm -R worktrees/c-worktree-deleted
3535
(cd bare.git
3636
git worktree add ../worktrees/from-bare/c
3737
git worktree add ../worktrees/from-bare/d-private-dir-deleted
38-
rm -R -v ./worktrees/d-private-dir-deleted
38+
rm -R ./worktrees/d-private-dir-deleted
3939
)
4040

4141
git clone --bare --shared . bare-no-config.git

0 commit comments

Comments
 (0)