2016-02-28 15:36:46 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
if [ -z "$ROOTPATH" ]
|
|
|
|
then
|
|
|
|
echo "upgd_nl.sh can only be launched from updt_nl.sh"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# determine directory where all files reside
|
2016-02-29 08:32:27 +00:00
|
|
|
CONTENTSPATH=$(dirname "$ROOTPATH")
|
|
|
|
MACOSPATH=$(dirname "$RYZOM_CLIENT")
|
2016-02-28 15:36:46 +00:00
|
|
|
SIGNPATH=$CONTENTSPATH/_CodeSignature
|
|
|
|
|
|
|
|
# all files of original Bundle are in the same directory
|
2016-10-16 15:38:37 +00:00
|
|
|
# we have to uncompress them to the right location
|
2016-02-28 15:36:46 +00:00
|
|
|
|
|
|
|
# client_default.cfg and ryzom.icns are already in the right location
|
|
|
|
|
2016-10-16 15:38:37 +00:00
|
|
|
# uncompress Ryzom
|
|
|
|
if [ -e "$ROOTPATH/Ryzom.zip" ]
|
|
|
|
then
|
2016-10-17 14:51:01 +00:00
|
|
|
unzip -o "$ROOTPATH/Ryzom.zip" -d "$CONTENTSPATH/../.."
|
2016-10-16 15:38:37 +00:00
|
|
|
fi
|
2016-02-28 15:36:46 +00:00
|
|
|
|
2016-10-16 15:38:37 +00:00
|
|
|
# only uncompress Ryzom Installer if found in parent directory
|
2016-10-17 14:51:01 +00:00
|
|
|
if [ -e "$ROOTPATH/RyzomInstaller.zip" ] && [ -d "$CONTENTSPATH/../../../Ryzom Installer.app" ]
|
2016-10-16 15:38:37 +00:00
|
|
|
then
|
2016-10-17 14:51:01 +00:00
|
|
|
rm -rf "$CONTENTSPATH/../../../Ryzom Installer.app"
|
|
|
|
unzip -o "$ROOTPATH/RyzomInstaller.zip" -d "$CONTENTSPATH/../../.."
|
2016-10-16 15:38:37 +00:00
|
|
|
fi
|
2016-02-28 15:36:46 +00:00
|
|
|
|
|
|
|
exit 0
|