Added option to build all overay bundles at once.

This commit is contained in:
Ivan Davidov 2019-11-02 22:03:57 +02:00
parent dd5b1ab1bd
commit a55307fb5e

View File

@ -30,7 +30,11 @@ if [ ! "$SKIP_CLEAN" = "true" ] ; then
./overlay_clean.sh
fi
BUNDLES_LIST="$(echo $OVERLAY_BUNDLES | tr ',' ' ')"
if [ "$OVERLAY_BUNDLES" = "all" ] ; then
BUNDLES_LIST=`ls $SRC_DIR/bundles`
else
BUNDLES_LIST="$(echo $OVERLAY_BUNDLES | tr ',' ' ')"
fi
for BUNDLE in $BUNDLES_LIST
do