mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-01 22:51:16 +00:00
19 lines
286 B
Bash
Executable File
19 lines
286 B
Bash
Executable File
#!/bin/sh
|
|
|
|
|
|
cd $HOME/source/1.4/po
|
|
find . -name "*.po" -exec rm {} \;
|
|
svn cleanup
|
|
svn up
|
|
|
|
cd $HOME/source/trunk/po
|
|
find . -name "*.po" -exec rm {} \;
|
|
svn cleanup
|
|
svn up
|
|
|
|
cd $HOME/source/wescamp-i18n/
|
|
find . -name "*.po" -exec rm {} \;
|
|
svn cleanup
|
|
svn up
|
|
php html/gettext/grab-stats.php
|