mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Changed: Upgrade scripts
This commit is contained in:
parent
a5596bf72d
commit
c9035ce396
2 changed files with 13 additions and 25 deletions
|
@ -12,33 +12,21 @@ MACOSPATH=$(dirname "$RYZOM_CLIENT")
|
||||||
SIGNPATH=$CONTENTSPATH/_CodeSignature
|
SIGNPATH=$CONTENTSPATH/_CodeSignature
|
||||||
|
|
||||||
# all files of original Bundle are in the same directory
|
# all files of original Bundle are in the same directory
|
||||||
# we have to copy them to the right location
|
# we have to uncompress them to the right location
|
||||||
|
|
||||||
# client_default.cfg and ryzom.icns are already in the right location
|
# client_default.cfg and ryzom.icns are already in the right location
|
||||||
|
|
||||||
# PkgInfo usually doesn't change so don't copy it
|
# uncompress Ryzom
|
||||||
|
if [ -e "$ROOTPATH/Ryzom.zip" ]
|
||||||
|
then
|
||||||
|
unzip -o "$ROOTPATH/Ryzom.zip" -d "$CONTENTSPATH/.."
|
||||||
|
fi
|
||||||
|
|
||||||
# Info.plist contains updated version
|
# only uncompress Ryzom Installer if found in parent directory
|
||||||
cp -p "$ROOTPATH/Info.plist" "$CONTENTSPATH"
|
if [ -e "$ROOTPATH/RyzomInstaller.zip" ] && [ -d "$CONTENTSPATH/../../Ryzom Installer.app" ]
|
||||||
|
then
|
||||||
cp -p "$ROOTPATH/CodeResources" "$SIGNPATH"
|
rm -rf "$CONTENTSPATH/../../Ryzom Installer.app"
|
||||||
|
unzip -o "$ROOTPATH/RyzomInstaller.zip" -d "$CONTENTSPATH/../.."
|
||||||
# executable flag for all executables
|
fi
|
||||||
chmod +x "$ROOTPATH/Ryzom"
|
|
||||||
chmod +x "$ROOTPATH/CrashReport"
|
|
||||||
chmod +x "$ROOTPATH/RyzomClientPatcher"
|
|
||||||
chmod +x "$ROOTPATH/RyzomConfiguration"
|
|
||||||
|
|
||||||
# remove previous executables
|
|
||||||
rm -f "$MACOSPATH/Ryzom"
|
|
||||||
rm -f "$MACOSPATH/CrashReport"
|
|
||||||
rm -f "$MACOSPATH/RyzomClientPatcher"
|
|
||||||
rm -f "$MACOSPATH/RyzomConfiguration"
|
|
||||||
|
|
||||||
# copy all binaries in MacOS directory
|
|
||||||
cp -p "$ROOTPATH/Ryzom" "$MACOSPATH"
|
|
||||||
cp -p "$ROOTPATH/CrashReport" "$MACOSPATH"
|
|
||||||
cp -p "$ROOTPATH/RyzomClientPatcher" "$MACOSPATH"
|
|
||||||
cp -p "$ROOTPATH/RyzomConfiguration" "$MACOSPATH"
|
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
|
Loading…
Reference in a new issue