Merge pull request #257 from flatcar-linux/t-lo/ci-automation-tap-remove-nonprint-ascii

ci-automation/tapfile_helper_lib.sh: remove non-printable ASCII
This commit is contained in:
Thilo Fromm 2022-03-16 10:59:08 +01:00 committed by GitHub
commit 08b620b5de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -127,7 +127,7 @@ function tap_ingest_tapfile() {
| LC_ALL=C sed -e 's/^Error: "--- FAIL: /"/' -e 's/^[[:space:]]*//' \
-e "s/[>\\\"']/_/g" -e 's/[[:space:]]/ /g' \
-e 's/.\{200\}/&\n/g' \
-e 's/[^\x00-\x7F]/?/g' \
-e 's/[^\x1F-\x7F]/?/g' \
>> "${error_message_file}"
continue
fi