Open reflog opened 3 months ago
Hi! Here's a small issue I came across:
var args struct { Param string }
./main --param A works ./main --param="-1h" works ./main --param "-1h" causes "error: missing value for -s"
./main --param A
./main --param="-1h"
./main --param "-1h"
Our CLI passes hour-differences this way and this used to work for us when using Go's flags, but unfortunately doesn't work with go-arg.
I understand that this is rather an edge case, but wanted to report it anyways.
Thanks for the great library!
I'm experiencing this as well when trying to supply negative numbers as arguments and seeing the same error message.
Hi! Here's a small issue I came across:
./main --param A
works./main --param="-1h"
works./main --param "-1h"
causes "error: missing value for -s"Our CLI passes hour-differences this way and this used to work for us when using Go's flags, but unfortunately doesn't work with go-arg.
I understand that this is rather an edge case, but wanted to report it anyways.
Thanks for the great library!