Jonathan Hart
Committed by Gerrit Code Review

Add exclusion for grouphandler to obs

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