You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
551 B
Bash
24 lines
551 B
Bash
9 years ago
|
#!/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
|
||
9 years ago
|
chmod +x "$ROOTPATH/ryzom_client"
|
||
|
chmod +x "$ROOTPATH/crash_report"
|
||
|
chmod +x "$ROOTPATH/ryzom_client_patcher"
|
||
9 years ago
|
chmod +x "$ROOTPATH/ryzom_configuration_qt"
|
||
8 years ago
|
chmod +x "$ROOTPATH/ryzom_installer_qt"
|
||
9 years ago
|
|
||
8 years ago
|
# copy Ryzom Installer if present in parent directory
|
||
|
if [ -e "$ROOTPATH/../ryzom_installer_qt" ]
|
||
|
then
|
||
8 years ago
|
rm -f "$ROOTPATH/../ryzom_installer_qt"
|
||
8 years ago
|
cp -a "$ROOTPATH/ryzom_installer_qt" "$ROOTPATH/.."
|
||
|
fi
|
||
|
|
||
9 years ago
|
exit 0
|