mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-28 20:15:32 +00:00
cc1f7f02e9
git-svn-id: https://openmw.svn.sourceforge.net/svnroot/openmw/trunk@100 ea6a568a-9f4f-0410-981a-c910a81bb256
13 lines
246 B
Bash
Executable file
13 lines
246 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
|