diff options
| author | David Bremner <david@tethera.net> | 2021-08-03 20:35:13 -0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2021-08-03 20:35:13 -0300 |
| commit | 3fc2e5f23bbbe3e9341397712a6a4d786adb8d6a (patch) | |
| tree | 61947b4317a36ebff7685e77ad9dab0ad8baf790 | |
| parent | 2474bce8b1a5b8011b19d8ff5cc84957e71e1917 (diff) | |
test: revert to mkdir -p to make results directory.
As suggested by id:m21r7al3mt.fsf@guru.guru-group.fi
| -rw-r--r-- | test/test-lib.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test-lib.sh b/test/test-lib.sh index 67ad8853..1dbc6f7f 100644 --- a/test/test-lib.sh +++ b/test/test-lib.sh @@ -861,7 +861,7 @@ test_when_finished () { test_done () { GIT_EXIT_OK=t test_results_dir="$TEST_DIRECTORY/test-results" - test -d "$test_results_dir" || mkdir "$test_results_dir" + mkdir -p "$test_results_dir" test_results_path="$test_results_dir/$this_test" printf %s\\n \ |
