8 lines
269 B
Python
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())
|