8 lines
268 B
Bash
Executable file
8 lines
268 B
Bash
Executable file
#!/bin/sh
|
|
'''exec' "/home/borderban/Рабочий стол/client-py/venv/bin/python3" "$0" "$@"
|
|
' '''
|
|
import sys
|
|
from PyInstaller.utils.cliutils.set_version import run
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = sys.argv[0].removesuffix('.exe')
|
|
sys.exit(run())
|