Unverified Commit 6eadd1b9 authored by Kroese's avatar Kroese Committed by GitHub
Browse files

fix: Timeout comparison operator (#1155)

parent 342ca4da
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -50,7 +50,7 @@ finish() {
      # Workaround for zombie pid
      [ ! -s "$QEMU_PID" ] && break

      if [ "$cnt" == "5" ]; then
      if [ "$cnt" -eq 5 ]; then
        echo && error "QEMU did not terminate itself, forcefully killing process..."
        { kill -9 "$pid" || true; } 2>/dev/null
      fi