Skip to content

Commit 0588e3c

Browse files
authored
Update build.sh
1 parent 8ed192f commit 0588e3c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

build.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ while getopts ":A:I:i:c:t:b:sde" opt; do
5252
;;
5353
b )
5454
b=$OPTARG
55-
if [ "$b" != "build" ] &&
56-
[ "$b" != "menuconfig" ] &&
57-
[ "$b" != "reconfigure" ] &&
58-
[ "$b" != "idf-libs" ] &&
59-
[ "$b" != "copy-bootloader" ] &&
55+
if [ "$b" != "build" ] &&
56+
[ "$b" != "menuconfig" ] &&
57+
[ "$b" != "reconfigure" ] &&
58+
[ "$b" != "idf-libs" ] &&
59+
[ "$b" != "copy-bootloader" ] &&
6060
[ "$b" != "mem-variant" ]; then
6161
print_help
6262
fi
@@ -119,7 +119,7 @@ if [ "$BUILD_TYPE" != "all" ]; then
119119
# Skip building for targets that are not in the $TARGET array
120120
continue
121121
fi
122-
122+
123123
configs="configs/defconfig.common;configs/defconfig.$target"
124124
for defconf in `echo "$target_json" | jq -c '.features[]' | tr -d '"'`; do
125125
configs="$configs;configs/defconfig.$defconf"
@@ -173,7 +173,7 @@ for target_json in `jq -c '.targets[]' configs/builds.json`; do
173173
continue
174174
fi
175175
fi
176-
176+
177177
# Skip chips that should not be a part of the final libs
178178
# WARNING!!! this logic needs to be updated when cron builds are split into jobs
179179
if [ "$TARGET" = "all" ] && [ $target_skip -eq 1 ]; then

0 commit comments

Comments
 (0)