Modified check-bits to show the listing of the actual tar.gz file rather than the sym-link.

Change-Id: I61ff5ffb3b37773fae192b2e02d723bb64dbbfb6
This commit is contained in:
Thomas Vachuska 2017-01-26 08:51:11 -08:00
parent 1560384ea3
commit b3ef9d0684

View File

@ -12,7 +12,7 @@ if [ -f $BUCK_TAR -a $BUCK_TAR -nt $ONOS_TAR ]; then
rm -f $ONOS_TAR >/dev/null; ln -s $BUCK_TAR $ONOS_TAR
fi
ls -l $ONOS_TAR && cksum $ONOS_TAR
ls -lL $ONOS_TAR && cksum $ONOS_TAR
if [ $? -ne 0 ]; then
echo "ONOS archive is unreadable" && exit 1
fi