khanat-opennel-code/code/nel/tools/3d/build_gamedata/processes/ps/sh/install.sh
acemtp@users.sourceforge.net d5c601ffa5 initial version
2010-05-06 02:08:41 +02:00

22 lines
691 B
Bash

#!/bin/bash
rm log.log 2> /dev/null
# Install the particule system in the client data
# Get the ps install directory
ps_install_directory=`cat ../../cfg/directories.cfg | grep "ps_install_directory" | sed -e 's/ps_install_directory//' | sed -e 's/ //g' | sed -e 's/=//g'`
# Get the client directory
client_directory=`cat ../../cfg/site.cfg | grep "client_directory" | sed -e 's/client_directory//' | sed -e 's/ //g' | sed -e 's/=//g'`
# Log error
echo ------- > log.log
echo --- Install ps >> log.log
echo ------- >> log.log
echo -------
echo --- Install ps
echo -------
date >> log.log
date
cp -u -p -R ps/. $client_directory/$ps_install_directory 2>> log.log