Remove hardcoded libpython binaries and add debug step
All checks were successful
build / build-linux (push) Successful in 16s
All checks were successful
build / build-linux (push) Successful in 16s
This commit is contained in:
8
venv/bin/pyi-archive_viewer
Executable file
8
venv/bin/pyi-archive_viewer
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/home/kadu/scripts/gotify-tray/venv/bin/python3
|
||||
# -*- coding: utf-8 -*-
|
||||
import re
|
||||
import sys
|
||||
from PyInstaller.utils.cliutils.archive_viewer import run
|
||||
if __name__ == '__main__':
|
||||
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
||||
sys.exit(run())
|
||||
8
venv/bin/pyi-bindepend
Executable file
8
venv/bin/pyi-bindepend
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/home/kadu/scripts/gotify-tray/venv/bin/python3
|
||||
# -*- coding: utf-8 -*-
|
||||
import re
|
||||
import sys
|
||||
from PyInstaller.utils.cliutils.bindepend import run
|
||||
if __name__ == '__main__':
|
||||
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
||||
sys.exit(run())
|
||||
8
venv/bin/pyi-grab_version
Executable file
8
venv/bin/pyi-grab_version
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/home/kadu/scripts/gotify-tray/venv/bin/python3
|
||||
# -*- coding: utf-8 -*-
|
||||
import re
|
||||
import sys
|
||||
from PyInstaller.utils.cliutils.grab_version import run
|
||||
if __name__ == '__main__':
|
||||
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
||||
sys.exit(run())
|
||||
8
venv/bin/pyi-makespec
Executable file
8
venv/bin/pyi-makespec
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/home/kadu/scripts/gotify-tray/venv/bin/python3
|
||||
# -*- coding: utf-8 -*-
|
||||
import re
|
||||
import sys
|
||||
from PyInstaller.utils.cliutils.makespec import run
|
||||
if __name__ == '__main__':
|
||||
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
||||
sys.exit(run())
|
||||
8
venv/bin/pyi-set_version
Executable file
8
venv/bin/pyi-set_version
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/home/kadu/scripts/gotify-tray/venv/bin/python3
|
||||
# -*- coding: utf-8 -*-
|
||||
import re
|
||||
import sys
|
||||
from PyInstaller.utils.cliutils.set_version import run
|
||||
if __name__ == '__main__':
|
||||
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
||||
sys.exit(run())
|
||||
8
venv/bin/pyinstaller
Executable file
8
venv/bin/pyinstaller
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/home/kadu/scripts/gotify-tray/venv/bin/python3
|
||||
# -*- coding: utf-8 -*-
|
||||
import re
|
||||
import sys
|
||||
from PyInstaller.__main__ import _console_script_run
|
||||
if __name__ == '__main__':
|
||||
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
||||
sys.exit(_console_script_run())
|
||||
Reference in New Issue
Block a user