Skip to content

Commit

Permalink
Silence the unofficial support warning with chainmode
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsIgnacioPortal committed Jul 7, 2022
1 parent 2aefab9 commit 1cd3614
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,10 @@ Example: ./hacker-scoper --file /home/kali/Downloads/recon-targets.txt --company
firebountyJSONPath = os.Getenv("APPDATA") + "\\hacker-scoper\\"

default:
warning("This OS isn't officially supported. The firebounty JSON will be downloaded in the current working directory. To override this behaviour, use the \"--fire\" flag.")
if !chainMode {
warning("This OS isn't officially supported. The firebounty JSON will be downloaded in the current working directory. To override this behaviour, use the \"--fire\" flag.")
}

firebountyJSONPath = ""
}

Expand Down

0 comments on commit 1cd3614

Please sign in to comment.