mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-05 23:09:02 +00:00
8 lines
248 B
Bash
Executable file
8 lines
248 B
Bash
Executable file
#!/bin/sh
|
|
if [ -z "${RYZOM_PATH+xxx}" ];
|
|
then
|
|
echo "ERROR: The variable RYZOM_PATH must be set! (e.g. /home/username/ryzom/code/ryzom)";
|
|
exit 1;
|
|
fi
|
|
cd $RYZOM_PATH/server
|
|
/bin/sh $RYZOM_PATH/tools/scripts/linux/ryzom_domain_screen_wrapper.sh $*
|