mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
8845ba3e05
Move ARCH check to correct place after setting the var. Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
11 lines
295 B
Bash
11 lines
295 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 "$@"
|