Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/Tutorial/build/run-script @ 56

Last change on this file since 56 was 56, checked in by nicolasc, 17 years ago

some more cleanups in run script
note to myself: keep working in one place

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