forked from teamnwah/openmw-tes3coop
714b724bf2
- removed all logging and output per default - updated to latest monster, bullet and ogre versions git-svn-id: https://openmw.svn.sourceforge.net/svnroot/openmw/trunk@102 ea6a568a-9f4f-0410-981a-c910a81bb256
15 lines
333 B
Bash
Executable file
15 lines
333 B
Bash
Executable file
#!/bin/bash
|
|
|
|
svn export ../../../monster/trunk/monster/ . --force
|
|
rm -r minibos vm/c_api.d
|
|
|
|
for a in $(find -iname \*.d); do
|
|
cat "$a" | sed s/monster.minibos./std./g > "$a"_new
|
|
mv "$a"_new "$a"
|
|
done
|
|
|
|
svn st
|
|
|
|
diff options.openmw options.d || $EDITOR options.d
|
|
mv options.openmw options.openmw_last
|
|
cp options.d options.openmw
|