Skip to content

Commit

Permalink
Update builder script to fix a typo
Browse files Browse the repository at this point in the history
Jared K. Smith committed Nov 6, 2011
1 parent b02db63 commit 840ccc9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scripts/build_resources.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
for filename in `ls pot/*.pot`
do
export short=`echo $filename | sed -e 's/.pot$//'`
short=`echo $filename | sed -e s/^pot.// | sed -e s/.pot$//`
long=`echo $filename | sed -e s/^pot.//`
echo [pym.$short]
echo file_filter = \<lang\>/$short.po
echo source_file = pot/$filename
echo source_file = pot/$long
echo source_lang = en

done

0 comments on commit 840ccc9

Please sign in to comment.