From 71e1d09175ab8c386d486ff1debd82f6adea721b Mon Sep 17 00:00:00 2001 From: Jarek Potiuk Date: Tue, 8 Sep 2020 19:23:07 +0200 Subject: [PATCH] Fixed wrong "-e" on md5 file status check (#10803) The "-e" flag was not reset properly in the md5 status check which could lead in some cases to removing output of flake check. --- scripts/ci/libraries/_md5sum.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/libraries/_md5sum.sh b/scripts/ci/libraries/_md5sum.sh index be41244d00..2ccbff84e1 100644 --- a/scripts/ci/libraries/_md5sum.sh +++ b/scripts/ci/libraries/_md5sum.sh @@ -92,7 +92,7 @@ function md5sum::calculate_md5sum_for_all_files() { FILES_MODIFIED="true" fi done - set +e + set -e } #