From 5d4fa5742fee322187d80bc5a9a55d41a621f8b6 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sat, 27 Sep 2014 21:07:00 -0500 Subject: [PATCH] Multi-build single.sh should exit with an error when build breaks. --- scripts/single.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/single.sh b/scripts/single.sh index cb67d3bb..c6416a35 100755 --- a/scripts/single.sh +++ b/scripts/single.sh @@ -23,5 +23,5 @@ do -e "s/# \(CONFIG_TOYBOX_FLOAT\) $USET/\1=y/" \ "$KCONFIG_CONFIG" && make && - mv toybox $PREFIX$i || break + mv toybox $PREFIX$i || exit 1 done -- 2.11.0