Thomas Vachuska
Committed by Gerrit Code Review

Fixed onos-run-karaf

Change-Id: If5ef4e2bf254cbba3891ab3412dea28f3e8c39e0
......@@ -24,7 +24,7 @@ set -e # Do not tolerate any errors from this point onward
# If the previous installation does not exist, or if the ONOS tar changed,
# or if the user asked for clean run, start from scratch.
if [ ! -d $ONOS_DIR -o $oldMD5 != $newMD5 -o -d $ONOS_DIR -a -n "$clean" ]; then
if [ ! -d $ONOS_DIR -o "$oldMD5" != "$newMD5" -o -d $ONOS_DIR -a -n "$clean" ]; then
echo "Running clean installation..."
# Blitz previously unrolled onos- directory
......