khanat-opennel-code/code/nel/tools/3d/build_gamedata/sh/client_setup.sh
Fabien_HENON 11298004e9 Updating the world_editor_classes.xml file for the guild missions
- Adding new actions for guild missions
- Adding the guild option for some actions
- Adding the nb_guild_members_needed option for the objectives
2011-05-23 16:09:14 +02:00

24 lines
No EOL
630 B
Bash

#!/bin/bash
rm log.log 2> /dev/null
# Setup the client
# 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'`
# Get the client setup directories
client_setup_directories=`cat cfg/directories.cfg | grep "client_setup_directory" | sed -e 's/client_setup_directory//' | sed -e 's/ //g' | sed -e 's/=//g'`
# Log error
echo > log.log
# Create the file
# For each directory
for i in $client_setup_directories ; do
# Create the directory
mkdir $client_directory/$i 2> /dev/null
# Idle
./idle.bat
done