From e1503f26fbe8f7c20cb8f0b816f311beeb531944 Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Sat, 7 Jul 2018 12:05:22 +0000 Subject: Fail if feed packages can't be installed --- build.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.sh b/build.sh index 7b7ee33..93bc766 100755 --- a/build.sh +++ b/build.sh @@ -172,11 +172,11 @@ build_procd() { fi if ! test -s $ipk; then - (cd $sdk - ./scripts/feeds update base - ./scripts/feeds install libubox - ./scripts/feeds install ubus - make defconfig + (cd $sdk && + ./scripts/feeds update base && + ./scripts/feeds install libubox && test -d package/feeds/base/libubox && + ./scripts/feeds install ubus && test -d package/feeds/base/ubus && + make defconfig && make package/lxd-procd/compile ) fi -- cgit v1.2.3