File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ function build_sketch(){ # build_sketch <ide_path> <user_path> <path-to-ino> [ex
158
158
fi
159
159
160
160
# Check if the sketch requires any configuration options
161
- requirements=$( jq -r ' .requires[]? // empty' $sketchdir /ci.json)
161
+ requirements=$( jq -r " .requires[]? // empty" $sketchdir /ci.json)
162
162
if [[ " $requirements " != " null" ]] || [[ " $requirements " != " " ]]; then
163
163
for requirement in $requirements ; do
164
164
found_line=$( grep -E " ^$requirement " " $SDKCONFIG_DIR /$target /sdkconfig" )
@@ -314,7 +314,7 @@ function count_sketches(){ # count_sketches <path> [target] [file]
314
314
fi
315
315
316
316
# Check if the sketch requires any configuration options
317
- requirements=$( jq -r ' .requires[]? // empty' $sketchdir /ci.json)
317
+ requirements=$( jq -r " .requires[]? // empty" $sketchdir /ci.json)
318
318
if [[ " $requirements " != " null" ]] || [[ " $requirements " != " " ]]; then
319
319
for requirement in $requirements ; do
320
320
found_line=$( grep -E " ^$requirement " $SDKCONFIG_DIR /$target /sdkconfig)
You can’t perform that action at this time.
0 commit comments