Commit 9514be0d authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

lowercase the extension of plugins just in case

parent 03032c26
...@@ -175,7 +175,7 @@ func (c *config) discoverSingle(glob string, m *map[string]string) error { ...@@ -175,7 +175,7 @@ func (c *config) discoverSingle(glob string, m *map[string]string) error {
// One Windows, ignore any plugins that don't end in .exe. // One Windows, ignore any plugins that don't end in .exe.
// We could do a full PATHEXT parse, but this is probably good enough. // We could do a full PATHEXT parse, but this is probably good enough.
if runtime.GOOS == "windows" && filepath.Ext(file) != "exe" { if runtime.GOOS == "windows" && strings.ToLower(filepath.Ext(file)) != "exe" {
log.Printf( log.Printf(
"[DEBUG] Ignoring plugin match %s, no exe extension", "[DEBUG] Ignoring plugin match %s, no exe extension",
match) match)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment