Added extra log for debuging.

This commit is contained in:
Foil-hat-guy 2025-04-21 00:05:36 +03:00
parent 7a21684147
commit 31cbc929d3
No known key found for this signature in database
GPG key ID: 221CC305A7B23591

1
ui.go
View file

@ -19,6 +19,7 @@ func init() {
func detectFlag(shortFlag string, fullFlag string) bool {
for _, arg := range os.Args {
fmt.Println(arg == fullFlag)
return containFlag(arg, shortFlag) || arg == fullFlag
}
return false