From 222fee90d401f343bc458c27cbcc112b4c66e33d Mon Sep 17 00:00:00 2001 From: Leandro Lanzieri Date: Thu, 25 Feb 2021 13:09:31 +0100 Subject: [PATCH] murdock: break loop when app found and fix error message --- .murdock | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.murdock b/.murdock index bb099d6801..2b9a7557e6 100755 --- a/.murdock +++ b/.murdock @@ -290,6 +290,7 @@ compile() { kconfig_test_hash=0 echo "An error occurred while compiling using Kconfig"; fi + break fi done @@ -302,7 +303,7 @@ compile() { if [ ${should_check_kconfig_hash} != 0 ]; then if [ ${kconfig_test_hash} != ${test_hash} ]; then - echo "Hashes of binaries with and without Kconfig mismatch for ${app}"; + echo "Hashes of binaries with and without Kconfig mismatch for ${appdir}"; echo "Please check that all used modules are modelled in Kconfig and enabled"; RES=1 fi