Skip to content

Commit b07ad46

Browse files
j6tgitster
authored andcommitted
t3700-add: create subdirectory gently
The subdirectory 'sub' is created early in the test file. Later, a test case removes it during its clean-up actions. However, this test case is protected by POSIXPERM. Consequently, 'sub' remains when the POSIXPERM prerequisite is not satisfied. Later, a recently introduced test case creates 'sub' again. Use -p with mkdir so that it does not fail if 'sub' already exists. Signed-off-by: Johannes Sixt <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 610d55a commit b07ad46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/t3700-add.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ test_expect_success 'no file status change if no pathspec is given' '
380380
'
381381

382382
test_expect_success 'no file status change if no pathspec is given in subdir' '
383-
mkdir sub &&
383+
mkdir -p sub &&
384384
(
385385
cd sub &&
386386
>sub-foo1 &&

0 commit comments

Comments
 (0)