mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Added: Scripts launched after patch
--HG-- branch : develop
This commit is contained in:
parent
0040fa888e
commit
3f2d1da933
2 changed files with 53 additions and 0 deletions
38
code/ryzom/client/macosx/upgd_nl.sh
Normal file
38
code/ryzom/client/macosx/upgd_nl.sh
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
#!/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
|
||||||
|
# we have to copy them to 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
|
||||||
|
|
||||||
|
# Info.plist contains updated version
|
||||||
|
cp -p $ROOTPATH/Info.plist $CONTENTSPATH
|
||||||
|
|
||||||
|
cp -p $ROOTPATH/CodeResources $SIGNPATH
|
||||||
|
|
||||||
|
# executable flag for all executables
|
||||||
|
chmod +x $ROOTPATH/Ryzom
|
||||||
|
chmod +x $ROOTPATH/CrashReport
|
||||||
|
chmod +x $ROOTPATH/RyzomClientPatcher
|
||||||
|
chmod +x $ROOTPATH/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
|
15
code/ryzom/client/unix/upgd_nl.sh
Normal file
15
code/ryzom/client/unix/upgd_nl.sh
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
#!/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
|
||||||
|
chmod +x $ROOTPATH/ryzom_configuration
|
||||||
|
|
||||||
|
exit 0
|
Loading…
Reference in a new issue