mirror of
https://github.com/naruxde/revpicommander.git
synced 2025-11-08 16:43:53 +01:00
Add code signing options for macOS. Adjust make.bat to create venv to use PyInstaller. Preparing script for Linux to use in /usr/bin.
10 lines
367 B
Bash
10 lines
367 B
Bash
#!/bin/sh
|
|
# Used to call the entry point, if packed with pybuild as application.
|
|
# PYBUILD_INSTALL_ARGS=--install-lib=/usr/share/revpicommander/ \
|
|
# --install-scripts=/usr/share/revpicommander/
|
|
#
|
|
# In that case the entry point will not find the revpicommander module in
|
|
# the python lib.
|
|
|
|
exec "/usr/share/revpicommander/revpicommander-gui" "$@"
|