Files
revpicommander/data/revpicommander
Sven Sager e4d18f7b4a feat: Change entrypoint name
This will update the alternative shell script as well. It will now just
pass the modules directory to python interpreter to execute the __main__
module.

Signed-off-by: Sven Sager <akira@narux.de>
2023-09-16 17:10:59 +02:00

8 lines
334 B
Bash

#!/bin/sh
# This script will create the entry point 'revpicommander', which is defined
# in the setup.py script. If you want to install this python module as an
# application and not in the python standard library directory, you will need
# to use this script for /usr/bin.
exec python3 /usr/share/revpicommander/revpicommander "$@"