Files
server/agent/build_venv/bin/pyinstaller
2025-12-17 12:33:42 -03:00

8 lines
269 B
Python

#!/home/halbebruno/Projetos/DNSBlock/agent/build_venv/bin/python3
import sys
from PyInstaller.__main__ import _console_script_run
if __name__ == '__main__':
if sys.argv[0].endswith('.exe'):
sys.argv[0] = sys.argv[0][:-4]
sys.exit(_console_script_run())