From 6a227f605ee7d6c3cee6feff8c515ca9b9a54c6f Mon Sep 17 00:00:00 2001 From: xbjfk Date: Wed, 21 Apr 2021 22:32:11 +1200 Subject: [PATCH] Do not lowercase the input file (Fixes Linux support) (#13) Linux path names are almost always case sensitive, so this PR removes forcing lowercase file names. --- exploits.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/exploits.go b/exploits.go index 42e20df..5d4f8a6 100644 --- a/exploits.go +++ b/exploits.go @@ -59,8 +59,6 @@ func handleArgs(args []string, quiet *bool) { } func initCommand(inputFile string, mode string) { - inputFile = strings.ToLower(inputFile) - if strings.HasSuffix(inputFile, ".webm") { switch mode {