2016-03-01 13:03:41 +00:00
|
|
|
#!/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"
|
2016-04-12 14:53:28 +00:00
|
|
|
chmod +x "$ROOTPATH/ryzom_configuration_qt"
|
2016-03-01 13:03:41 +00:00
|
|
|
|
|
|
|
exit 0
|