Skip to content
This repository has been archived by the owner on Feb 26, 2019. It is now read-only.

Fix for case insensitive filesystems

Compare
Choose a tag to compare
@freeformz freeformz released this 23 Feb 00:24
· 68 commits to master since this release
Replace simple == with strings.EqualFold

In listFiles I added a check to ensure that godep only processes files
in the current directory. This check was unfortunately a byte by byte
check, not a case insensitive check. With case insensitive filesystems
"Code" == "code".

So replace that with a strings.EqualFold()