khanat-code-old/code/ryzom/client/macosx/upgd_nl.sh

33 lines
862 B
Bash
Raw Normal View History

2016-09-24 12:22:22 +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
CONTENTSPATH=$(dirname "$ROOTPATH")
MACOSPATH=$(dirname "$RYZOM_CLIENT")
SIGNPATH=$CONTENTSPATH/_CodeSignature
# all files of original Bundle are in the same directory
2016-10-16 15:39:37 +00:00
# we have to uncompress them to the right location
2016-09-24 12:22:22 +00:00
# client_default.cfg and ryzom.icns are already in the right location
2016-10-16 15:39:37 +00:00
# uncompress Ryzom
if [ -e "$ROOTPATH/Ryzom.zip" ]
then
2016-10-17 14:51:42 +00:00
unzip -o "$ROOTPATH/Ryzom.zip" -d "$CONTENTSPATH/../.."
2016-10-16 15:39:37 +00:00
fi
2016-09-24 12:22:22 +00:00
2016-10-16 15:39:37 +00:00
# only uncompress Ryzom Installer if found in parent directory
2016-10-17 14:51:42 +00:00
if [ -e "$ROOTPATH/RyzomInstaller.zip" ] && [ -d "$CONTENTSPATH/../../../Ryzom Installer.app" ]
2016-10-16 15:39:37 +00:00
then
2016-10-17 14:51:42 +00:00
rm -rf "$CONTENTSPATH/../../../Ryzom Installer.app"
unzip -o "$ROOTPATH/RyzomInstaller.zip" -d "$CONTENTSPATH/../../.."
2016-10-16 15:39:37 +00:00
fi
2016-09-24 12:22:22 +00:00
exit 0