Jonathan Hart
Committed by Gerrit Code Review

Add exclusion for grouphandler to obs

Change-Id: I90ec773508e1de979ed76d8c91cc3e74e1b4944f
......@@ -5,7 +5,7 @@
# TODO: figure out a more elegant way of ignoring disconnected projects
projects=$(find $ONOS_ROOT -name '*.java' \
-not -path '.git/*' -and -not -path '*/archetypes/*' -and -not -path '*/foo/*' \
-not -path '.git/*' -and -not -path '*/archetypes/*' -and -not -path '*/foo/*' -and -not -path '*/grouphandler/*' \
-exec $ONOS_ROOT/tools/dev/bin/onos-build-selective-hook {} \; | \
sort -u | sed "s:$ONOS_ROOT::g" | tr '\n' ',' | \
sed 's:/,:,:g;s:,/:,:g;s:^/::g;s:,$::g')
......