mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-06 08:26:50 +01:00
efabb12379
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
12 lines
296 B
Bash
12 lines
296 B
Bash
#!/bin/sh
|
|
|
|
if [ "$1" = "--help" -o "$1" = "-h" ]; then
|
|
PYTHONPATH=$PYTHONPATH:/opt/luxcorerender-2.6 python3 \
|
|
/opt/luxcorerender-2.6/pyluxcoretools.zip \
|
|
help
|
|
exit
|
|
fi
|
|
|
|
PYTHONPATH=$PYTHONPATH:/opt/luxcorerender-2.6 python3 \
|
|
/opt/luxcorerender-2.6/pyluxcoretools.zip "$@"
|
|
|