vmware-archive / photon-controller-cli

Apache License 2.0
11 stars 8 forks source link

photon/command/auth.go:94: cannot refer to unexported name cli.context #2

Closed Lokicity closed 7 years ago

Lokicity commented 7 years ago

I got an email and somebody tried to modify the cli code and ran into this compiler err

photon/command/auth.go:94: cannot refer to unexported name cli.context photon/command/auth.go:94: undefined: cli.context

The answer is that golang is case sensitive and you should use cli.Context instead of cli.context on line 94

Anuj-21 commented 7 years ago

Thanks a lot for helping me.