We already delete output.xml, nobody needs report.html.
Change-Id: I39f70549e802a0d897634907dda335913f0005e3
Signed-off-by: Vratko Polak <[email protected]>
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