Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/tutorial/Tutorial/build/run-script @ 46

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

made run-script usable, added 'build-script'

  • Property svn:executable set to *
File size: 464 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 [[ is_tardis  ]] ; 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        fi
18fi
19exec ./main
Note: See TracBrowser for help on using the repository browser.