Bugfix on handling of first arg

This commit is contained in:
yo 2023-07-25 10:09:51 +02:00
parent 6e23343c68
commit 2c1e623c66

View File

@ -37,7 +37,7 @@ func main() {
flag.Parse()
if len(flag.Args()) > 0 {
if len(flag.Args()) == 0 {
input = "-"
}