Skip to content

Commit f3034d3

Browse files
committed
parsing ip r output
1 parent 2b0651b commit f3034d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/minikube/tunnel/route_linux.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ func (router *osRouter) parseTable(table []byte) routingTable {
7676

7777
//don't care about the routes that 0.0.0.0
7878
if len(fields) == 0 ||
79-
len(fields) > 0 && (fields[0] == "default" || fields[0] == "0.0.0.0") {
79+
len(fields) > 0 && (fields[0] == "default" || fields[0] == "0.0.0.0") {
8080
continue
8181
}
8282

0 commit comments

Comments
 (0)