Skip to content

Commit ee3dc08

Browse files
committed
script: add option to build all configurations
./go.sh all should now build everything Signed-off-by: Anas Nashif <[email protected]>
1 parent 15e07a3 commit ee3dc08

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

go.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ if [ -z "$TARGETS" ]; then
77
echo "Please specify target"
88
exit 1
99
fi
10+
if [ "$TARGETS" == "all" ]; then
11+
TARGETS=$(ls -1 configs/ | sed 's/.config//')
12+
fi
1013

1114
REQUIRED_VERSION=1.23.0
1215
COMMIT="f8874f447e40852d33d65c1f443a90b0760901df"

0 commit comments

Comments
 (0)