twitchscience / kinsumer

Native Go consumer for AWS Kinesis streams.
Other
134 stars 35 forks source link

Fix casing of imports #5

Closed spenczar closed 8 years ago

spenczar commented 8 years ago

These probably were working on OSX because OSX's file system is case insensitive, but on linux with ext4 these break.

spenczar commented 8 years ago

This is actually unnecessary. If one uses go get github.com/twitchscience/kinsumer, then go get will put things into $GOPATH/src/github.com/twitchscience, following the casing for the go get command's argument.

Similarly, if kinsumer is imported in lowercased fashion, then go get -u of a package that uses kinsumer will do the right thing.

This means that this isn't a crucial problem; it's merely confusing.