Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/xml/bin/run-script @ 140

Last change on this file since 140 was 140, checked in by nicolape, 16 years ago

XML-Loader so far…

  • Property svn:executable set to *
File size: 618 bytes
RevLine 
[76]1#!/bin/bash
[140]2cd bin
[76]3if [[ !  -f main ]] ; then
4        echo "main does not exist"
5        echo "did you compile it?"
6
7        exit 1
8fi
9
10if [[ ! -f orge.cfg ]] ; then
11        cp ogre.cfg-init ogre.cfg
12fi
13
14# check if plugins.cfg exists, and of not create it
15# and modify
16if [[ ! -f plugins.cfg ]] ; then 
17        if uname -n | grep "tardis" > /dev/null ; then
18                sed -e 's:PluginFolder=/usr/lib/OGRE:PluginFolder=/usr/pack/ogre-1.4.5-sd/i686-debian-linux3.1/lib/OGRE/:' \
19                -e 's:#Plugin=Plugin_CgProgramManager:Plugin=Plugin_CgProgramManager:' plugins.cfg-init > plugins.cfg
20        else
21                cp plugins.cfg-init plugins.cfg
22        fi
23fi
24exec ./main
[140]25cd ..
Note: See TracBrowser for help on using the repository browser.