Thomas Vachuska
Committed by Gerrit Code Review

Fixed onos-check-apps to ignore Karaf client extra line of output.

Change-Id: I04469557d5717fbfc59cb3edffcf889dacfd15a7
......@@ -13,7 +13,7 @@ onos ${1:-$OCI} "onos:apps -s -a" > $aux
cat $aux
# Normalize the installed apps
cut -c7- $aux | cut -d\ -f1 | sort > $aux.1
cut -c7- $aux | grep -v '/bin/client' | cut -d\ -f1 | sort > $aux.1
# Normalize the expected apps
apps=${2:-$ONOS_APPS}
......