91e6b23d3f
NMAKE-VS2012 Error LNK2011 while NMAKE-VS2010 does not complain we need to link the pch.obj file see http://msdn.microsoft.com/en-us/library/3ay26wa2(v=vs.110).aspx ** PCH Support for Ninja Ninja need to add property OBJECT_DEPENDS for using PCH OBJECT_OUTPUTS for create PCH see http://public.kitware.com/pipermail/cmake-developers/2012-March/003653.html
29 lines
844 B
Bash
29 lines
844 B
Bash
#!/bin/sh
|
|
|
|
cd /home/api/public_html/server/scripts
|
|
|
|
# get guilds
|
|
|
|
rm /home/api/public_html/data/cache/guilds/*
|
|
|
|
rsync -az --rsh=ssh nevrax@shard.ryzom.com:/home/nevrax/code/ryzom/server/save_shard/live_atys/guilds/guild_*.bin /home/api/public_html/data/cache/guilds/
|
|
|
|
./pdr_util -x -s/home/app/web_hg/api/server/scripts/sheet_id.bin /home/api/public_html/data/cache/guilds/guild_*.bin
|
|
|
|
rm /home/api/public_html/data/cache/guilds/guild_*.bin
|
|
|
|
/usr/bin/php ./create_guilds_xml.php
|
|
|
|
rm /home/api/public_html/data/cache/guilds/guild_?????.xml
|
|
|
|
rm log.log
|
|
|
|
/root/bin/own.sh api /home/api/public_html/data/cache/guilds/
|
|
|
|
# get tick
|
|
|
|
rsync -az --rsh=ssh nevrax@shard.ryzom.com:/home/nevrax/code/ryzom/server/save_shard/live_atys/game_cycle.ticks /home/api/public_html/data/cache/
|
|
|
|
chown api:api /home/api/public_html/data/cache/game_cycle.ticks
|
|
|
|
cd -
|