Committed by
Gerrit Code Review
Fixed onos-check-apps to ignore Karaf client extra line of output.
Change-Id: I04469557d5717fbfc59cb3edffcf889dacfd15a7
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -13,7 +13,7 @@ onos ${1:-$OCI} "onos:apps -s -a" > $aux | ... | @@ -13,7 +13,7 @@ onos ${1:-$OCI} "onos:apps -s -a" > $aux |
13 | cat $aux | 13 | cat $aux |
14 | 14 | ||
15 | # Normalize the installed apps | 15 | # Normalize the installed apps |
16 | -cut -c7- $aux | cut -d\ -f1 | sort > $aux.1 | 16 | +cut -c7- $aux | grep -v '/bin/client' | cut -d\ -f1 | sort > $aux.1 |
17 | 17 | ||
18 | # Normalize the expected apps | 18 | # Normalize the expected apps |
19 | apps=${2:-$ONOS_APPS} | 19 | apps=${2:-$ONOS_APPS} | ... | ... |
-
Please register or login to post a comment