From 76c9b277e4beb96117cd6bd09c37eb6850ba0d61 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Fri, 27 Jun 2025 19:04:04 +0200 Subject: [PATCH] ci: always make sure the results dir is created, not just when changing its path Part-of: --- .gitlab-ci/setup-test-env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci/setup-test-env.sh b/.gitlab-ci/setup-test-env.sh index 7861105f6b6..b8caef839c1 100755 --- a/.gitlab-ci/setup-test-env.sh +++ b/.gitlab-ci/setup-test-env.sh @@ -131,8 +131,8 @@ export -f _error_msg if [ -z "${RESULTS_DIR:-}" ]; then export RESULTS_DIR="${PWD%/}/results" rm -rf "${RESULTS_DIR}" - mkdir -p "${RESULTS_DIR}" fi +mkdir -p "${RESULTS_DIR}" function error { # we force the following to be not in a section