From cb6e0b18f1584217e77f58bdb69ced77cc71eebb Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Thu, 25 Aug 2016 10:28:25 +0800 Subject: [PATCH] make: update template configuration before running tests This fixes build error for non-interactive builds --- make/build_system_tests.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/make/build_system_tests.sh b/make/build_system_tests.sh index 6006f05a90..5824cf2b8e 100755 --- a/make/build_system_tests.sh +++ b/make/build_system_tests.sh @@ -30,6 +30,9 @@ function run_tests() git clone ${ESP_IDF_TEMPLATE_GIT} template cd template + print_status "Updating template config..." + make defconfig || exit $? + BOOTLOADER_BINS="bootloader/bootloader.elf bootloader/bootloader.bin" APP_BINS="app-template.elf app-template.bin" -- 2.40.0