File tree 3 files changed +4
-0
lines changed
3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -150,6 +150,7 @@ function build_pio_sketches(){ # build_pio_sketches <board> <options> <examples-
150
150
fi
151
151
152
152
local has_requirements=$( ${CHECK_REQUIREMENTS} $sketchdir " $SDKCONFIG_DIR /esp32/sdkconfig" )
153
+ echo " Requirements: $has_requirements "
153
154
if [ " $has_requirements " == " 0" ]; then
154
155
continue
155
156
fi
Original file line number Diff line number Diff line change @@ -213,6 +213,7 @@ function build_sketch(){ # build_sketch <ide_path> <user_path> <path-to-ino> [ex
213
213
fi
214
214
215
215
local has_requirements=$( check_requirements " $sketchdir " " $SDKCONFIG_DIR /$target /sdkconfig" )
216
+ echo " Requirements: $has_requirements "
216
217
if [ " $has_requirements " == " 0" ]; then
217
218
echo " Target $target does not meet the requirements for $sketchname . Skipping."
218
219
exit 0
@@ -365,6 +366,7 @@ function count_sketches(){ # count_sketches <path> [target] [file] [ignore-requi
365
366
366
367
if [ " $ignore_requirements " != " 1" ]; then
367
368
local has_requirements=$( check_requirements " $sketchdir " " $SDKCONFIG_DIR /$target /sdkconfig" )
369
+ echo " Requirements: $has_requirements "
368
370
if [ " $has_requirements " == " 0" ]; then
369
371
continue
370
372
fi
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ function run_test() {
38
38
fi
39
39
40
40
local has_requirements=$( ${CHECK_REQUIREMENTS} $sketchdir " $sdkconfig_path " )
41
+ echo " Requirements: $has_requirements "
41
42
if [ " $has_requirements " == " 0" ]; then
42
43
printf " \033[93mTarget $target does not meet the requirements for $sketchname . Skipping.\033[0m\n"
43
44
printf " \n\n\n"
You can’t perform that action at this time.
0 commit comments