codegangsta / gin

Live reload utility for Go web servers
MIT License
4.23k stars 317 forks source link

Flag provided but not defined #141

Closed alshdavid closed 1 year ago

alshdavid commented 6 years ago

Using gin run -t src/app/main.go

I get:

Incorrect Usage: flag provided but not defined: -t                                                                                                                                   app_1  |                                                                                                                                                                                      app_1  | NAME:                                                                                                                                                                                app_1  |    gin run - Run the gin proxy in the current working directory    

Windows 10 through Docker

I have tried:

gin run src/app/main.go --logPrefix test
gin run src/app/main.go --logPrefix "test"
gin run src/app/main.go --logPrefix="test"
gin run src/app/main.go --logPrefix=test
gin run --logPrefix test src/app/main.go
gin run --logPrefix test -t src/app/main.go
alshdavid commented 6 years ago

Oh my bad

gin --logPrefix yo