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 <j6t@kdbg.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Johannes Sixt committed
Sep 20, 2016 at 08:16 UTC
b07ad46432aa4fd80e8ebbcc48d38ec94ae20b01
1 file changed
+1
-1
t/t3700-add.sh
+1
-1
@@ -380,7 +380,7 @@ test_expect_success 'no file status change if no pathspec is given' '
380
'
381
382
test_expect_success 'no file status change if no pathspec is given in subdir' '
383
- mkdir sub &&
383
+ mkdir -p sub &&
384
(
385
cd sub &&
386
>sub-foo1 &&