[TMP] Add missing error disabling

This commit is contained in:
Kamil Śliwak 2020-11-17 17:43:05 +01:00
parent 3bd071d4e4
commit 3483d775fe

View File

@ -41,7 +41,9 @@ while read -r file; do
# NOTE: The command returns the name of the input file if it's not a multi-source file
OUTPUT="$($SPLITSOURCES "$file")"
set +e
testFile "$OUTPUT"
set -e
FAILED=$?
rm -r "${FILETMP:?}"/* 2> /dev/null || true