From e53153c7f570054e4b5fe5612c1cd838398e5a4f Mon Sep 17 00:00:00 2001 From: xbjfk Date: Sat, 17 Apr 2021 13:40:38 +1200 Subject: [PATCH] Do not lowercase the input file (Fixes Linux support) 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 {