chore: 当无tag时不输出无效日志

This commit is contained in:
gVisor bot 2022-06-03 21:00:45 +08:00
parent 5cefface6b
commit 2145cebe1f

View file

@ -54,7 +54,10 @@ func main() {
if version {
fmt.Printf("Clash Meta %s %s %s with %s %s\n",
C.Version, runtime.GOOS, runtime.GOARCH, runtime.Version(), C.BuildTime)
if len(features.TAGS) != 0 {
fmt.Printf("Use tags: %s\n", strings.Join(features.TAGS, ", "))
}
return
}