From f30705823446cc35010842a7245f13794cc686c9 Mon Sep 17 00:00:00 2001 From: Vratko Polak Date: Mon, 6 Oct 2025 13:08:23 +0200 Subject: [PATCH] fix(perpatch): Do not save non-essential files We already delete output.xml, nobody needs report.html. Change-Id: I39f70549e802a0d897634907dda335913f0005e3 Signed-off-by: Vratko Polak --- resources/libraries/bash/function/per_patch.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/libraries/bash/function/per_patch.sh b/resources/libraries/bash/function/per_patch.sh index 745cf33b69..b40c54b911 100644 --- a/resources/libraries/bash/function/per_patch.sh +++ b/resources/libraries/bash/function/per_patch.sh @@ -222,7 +222,7 @@ function move_test_results () { cd "${VPP_DIR}" || die "Change directory command failed." TARGET="$(readlink -f "$1")" mkdir -p "${TARGET}" || die "Directory creation failed." - file_list=("output.xml" "log.html" "report.html" "tests") + file_list=("log.html" "tests") for filename in "${file_list[@]}"; do mv "${ARCHIVE_DIR}/${filename}" "${TARGET}/${filename}" || die done -- 2.16.6