Last change
on this file since 45 was
45,
checked in by nicolasc, 18 years ago
|
added run-script to do autoconfig of plugins.cfg
|
-
Property svn:executable set to
*
|
File size:
479 bytes
|
Rev | Line | |
---|
[45] | 1 | #!/bin/bash |
---|
| 2 | |
---|
| 3 | if [[ ! -f main ]] ; then |
---|
| 4 | echo "main does not exist" |
---|
| 5 | echo "did you compile it?" |
---|
| 6 | |
---|
| 7 | exit 1 |
---|
| 8 | fi |
---|
| 9 | |
---|
| 10 | # check if plugins.cfg exists, and of not create it |
---|
| 11 | # and modify |
---|
| 12 | if [[ ! -f plugins.cfg ]] ; then |
---|
| 13 | cp plugins.cfg-init plugins.cfg |
---|
| 14 | |
---|
| 15 | is_tardis=`uname -n | grep tardis` |
---|
| 16 | echo "isTardis: ${is_tardis}" |
---|
| 17 | if [[ is_tardis ]] ; then |
---|
| 18 | sed -e 's:PLuginFolder=/usr/lib/OGRE:PluginFolder=/usr/pack/ogre-1.4.5-sd/i686-debian-linux3.1/lib/OGRE/:' plugins.cfg |
---|
| 19 | fi |
---|
| 20 | fi |
---|
| 21 | exec ./main |
---|
Note: See
TracBrowser
for help on using the repository browser.