Skip to content

Commit

Permalink
fix: This is a special version for missuo (compile failed when use ve…
Browse files Browse the repository at this point in the history
…rsion value)
  • Loading branch information
sjlleo committed May 24, 2022
1 parent 738ff94 commit 8b0cd99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ var rdnsenable = flag.Bool("rdns", false, "Set whether rDNS will be display")
var routePath = flag.Bool("report", false, "Route Path")
var realtimePrint = flag.Bool("realtime", false, "Output trace results in runtime")
var tablePrint = flag.Bool("table", false, "Output trace results as table")
var version = flag.Bool("V", false, "Check Version")
var ver = flag.Bool("V", false, "Check Version")

func flagApply() string {
flag.Parse()
if *version {
if *ver {
printer.Version()
os.Exit(0)
}
Expand Down

0 comments on commit 8b0cd99

Please sign in to comment.