1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-20 03:53:52 +00:00
openmw-tes3mp/monster/update.sh
nkorslund 2f07faf00e Updated monster to 0.10
git-svn-id: https://openmw.svn.sourceforge.net/svnroot/openmw/trunk@69 ea6a568a-9f4f-0410-981a-c910a81bb256
2008-11-16 18:51:26 +00:00

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