1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

murdock: break loop when app found and fix error message

This commit is contained in:
Leandro Lanzieri 2021-02-25 13:09:31 +01:00
parent eaabcac205
commit 222fee90d4
No known key found for this signature in database
GPG Key ID: F4E9A721761C7593

View File

@ -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