From 0c1a1cf28ef6e4f08403ed1ae4a4029daf0bcbb2 Mon Sep 17 00:00:00 2001 From: xaoirse Date: Thu, 23 Sep 2021 12:28:07 +0330 Subject: [PATCH] Deleted Re-parse the cli options from main.go --- CHANGELOG.md | 1 + CONTRIBUTORS.md | 1 + main.go | 3 ++- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b750349..f5caae28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ - Changed - Fixed an issue where output file was created regardless of `-or` - Fixed an issue where output (often a lot of it) would be printed after entering interactive mode + - Fixed an issue where caused Wordlist args missing when referenced from config file - v1.3.1 - New diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 4c2f8b02..a4d51d81 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -35,3 +35,4 @@ * [SolomonSklash](https://github.com/SolomonSklash) * [l4yton](https://github.com/l4yton) * [xfgusta](https://github.com/xfgusta) +* [xaoirse](https://github.com/xaoirse) \ No newline at end of file diff --git a/main.go b/main.go index 4e2dd9c1..32def198 100644 --- a/main.go +++ b/main.go @@ -172,7 +172,8 @@ func main() { // Reset the flag package state flag.CommandLine = flag.NewFlagSet(os.Args[0], flag.ExitOnError) // Re-parse the cli options - opts = ParseFlags(opts) + // Why? + // opts = ParseFlags(opts) } // Prepare context and set up Config struct