Skip to content

Commit

Permalink
Adds script to run themestrings
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.mythtv.org/svn/trunk@23642 7dbf422c-18fa-0310-86e9-fd20926502f2
  • Loading branch information
daniel-kristjansson committed Mar 2, 2010
1 parent d315ef1 commit 0d02950
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions themestringstool/run.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/bin/bash
TS=`pwd`/themestrings

rm -f ../myththemes/metallurgy/menu-definitions.xml

pushd ../mythtv/themes
$TS ../.. . > /dev/null
popd > /dev/null

for I in `ls ../mythplugins --file-type | grep "/$" | grep -v cleanup | grep -v mythweb` ; do
pushd ../mythplugins/$I
$TS . `pwd`/i18n > /dev/null
popd > /dev/null
done

svn revert ../myththemes/metallurgy/menu-definitions.xml

pushd .. > /dev/null
svn st
emacs `svn st | grep "^M" | sed -e "s/^M//"` &
popd > /dev/null

0 comments on commit 0d02950

Please sign in to comment.