mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-11 09:49:05 +00:00
16 lines
308 B
Bash
16 lines
308 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ -z "$ROOTPATH" ]
|
||
|
then
|
||
|
echo "upgd_nl.sh can only be launched from updt_nl.sh"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
# executable flag for all executables
|
||
|
chmod +x "$ROOTPATH/ryzom_client"
|
||
|
chmod +x "$ROOTPATH/crash_report"
|
||
|
chmod +x "$ROOTPATH/ryzom_client_patcher"
|
||
|
chmod +x "$ROOTPATH/ryzom_configuration_qt"
|
||
|
|
||
|
exit 0
|