script: add option to build all configurations

./go.sh all should now build everything

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2018-12-06 19:16:53 -05:00
parent 15e07a3f98
commit ee3dc08779
1 changed files with 3 additions and 0 deletions

3
go.sh
View File

@ -7,6 +7,9 @@ if [ -z "$TARGETS" ]; then
echo "Please specify target"
exit 1
fi
if [ "$TARGETS" == "all" ]; then
TARGETS=$(ls -1 configs/ | sed 's/.config//')
fi
REQUIRED_VERSION=1.23.0
COMMIT="f8874f447e40852d33d65c1f443a90b0760901df"