mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2024-11-10 06:54:18 +00:00
Fixes matasploit path search.
This commit is contained in:
parent
0672c2746b
commit
c70b5c2004
1 changed files with 1 additions and 1 deletions
|
@ -332,7 +332,7 @@ def meta_path():
|
|||
|
||||
# pull from config first
|
||||
msf_path = check_config("METASPLOIT_PATH=")
|
||||
if not str(msf_path.endswith("/")):
|
||||
if not msf_path.endswith("/"):
|
||||
msf_path = msf_path + "/"
|
||||
if os.path.isfile(msf_path + "msfconsole"):
|
||||
trigger = 1
|
||||
|
|
Loading…
Reference in a new issue