Skip to content

Commit

Permalink
Fix comments cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
alecpl committed Oct 9, 2013
1 parent 915bac3 commit 07e5d73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/transifexpull.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# In 'translator' mode files will contain empty translated texts
# where translation is not available, we'll remove these later

tx --debug pull -a --mode translator
#tx --debug pull -a --mode translator

PWD=`dirname "$0"`

Expand All @@ -18,7 +18,7 @@ do_clean()
perl -pi -e "s/^\\\$labels\[[^]]+\]\s+=\s+'';\n//g" $1
perl -pi -e "s/^\\\$messages\[[^]]+\]\s+=\s+'';\n//g" $1
# remove (one-line) comments
perl -pi -e "s/^\\/\\/[a-zA-Z0-9\s]+//g" $1
perl -pi -e "s/^\\/\\/.*//g" $1
# remove empty lines (but not in file header)
perl -ne 'print if ($. < 21 || length($_) > 1)' $1 > $1.tmp
mv $1.tmp $1
Expand Down

0 comments on commit 07e5d73

Please sign in to comment.