mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-20 03:53:52 +00:00
2f07faf00e
git-svn-id: https://openmw.svn.sourceforge.net/svnroot/openmw/trunk@69 ea6a568a-9f4f-0410-981a-c910a81bb256
11 lines
215 B
Bash
Executable file
11 lines
215 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
|