mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2024-11-23 04:53:05 +00:00
Merge pull request #328 from lostcarrier/master
changed pefile section in setup.py
This commit is contained in:
commit
63b667ceff
1 changed files with 4 additions and 4 deletions
8
setup.py
8
setup.py
|
@ -47,10 +47,10 @@ if platform.system() == "Linux":
|
|||
subprocess.Popen("pacman -S --noconfirm --needed git python2 "
|
||||
"python2-beautifulsoup3 python2-pexpect python2-crypto", shell=True).wait()
|
||||
|
||||
subprocess.Popen("wget https://pefile.googlecode.com/files/pefile-1.2.10-139.tar.gz", shell=True).wait()
|
||||
subprocess.Popen("tar xvfz pefile-1.2.10-139.tar.gz", shell=True).wait()
|
||||
subprocess.Popen("chmod a+x pefile-1.2.10-139/setup.py", shell=True).wait()
|
||||
subprocess.Popen("rm -rf pefile-1.2.10-139*", shell=True).wait()
|
||||
subprocess.Popen("wget https://github.com/erocarrera/pefile/archive/master.zip", shell=True).wait()
|
||||
subprocess.Popen("unzip master.zip", shell=True).wait()
|
||||
subprocess.Popen("chmod a+x pefile-master/setup.py", shell=True).wait()
|
||||
subprocess.Popen("rm -rf pefile-master*", shell=True).wait()
|
||||
|
||||
# if dnf.conf is there, we are dealing with a >= fedora 22 - added thanks to whoismath pr
|
||||
elif os.path.isfile("/etc/dnf/dnf.conf"):
|
||||
|
|
Loading…
Reference in a new issue