File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -159,8 +159,10 @@ function build_sketch(){ # build_sketch <ide_path> <user_path> <path-to-ino> [ex
159
159
160
160
# Check if the sketch requires any configuration options
161
161
requirements=$( jq -r " .requires[]? // empty" $sketchdir /ci.json)
162
+ echo " Requirements: $requirements "
162
163
if [[ " $requirements " != " null" ]] || [[ " $requirements " != " " ]]; then
163
164
for requirement in $requirements ; do
165
+ echo " Requirement: $requirement "
164
166
found_line=$( grep -E " ^$requirement " " $SDKCONFIG_DIR /$target /sdkconfig" )
165
167
if [[ " $found_line " == " " ]]; then
166
168
echo " Target $target does not meet the requirement $requirement for $sketchname . Skipping."
@@ -315,8 +317,10 @@ function count_sketches(){ # count_sketches <path> [target] [file]
315
317
316
318
# Check if the sketch requires any configuration options
317
319
requirements=$( jq -r " .requires[]? // empty" $sketchdir /ci.json)
320
+ echo " Requirements: $requirements "
318
321
if [[ " $requirements " != " null" ]] || [[ " $requirements " != " " ]]; then
319
322
for requirement in $requirements ; do
323
+ echo " Requirement: $requirement "
320
324
found_line=$( grep -E " ^$requirement " $SDKCONFIG_DIR /$target /sdkconfig)
321
325
if [[ " $found_line " == " " ]]; then
322
326
continue 2
You can’t perform that action at this time.
0 commit comments