whitespacecleanup.sh
20 lines
| 934 B
| application/x-sh
|
BashLexer
/ scripts / whitespacecleanup.sh
Mads Kiilerich
|
r5517 | #!/bin/bash -x | ||
# Enforce some consistency in whitespace - just to avoid spurious whitespaces changes | ||||
Mads Kiilerich
|
r7386 | files=`hg mani | egrep -v '/fontello/|/email_templates/|(/lockfiles.py|^LICENSE-MERGELY.html|^docs/Makefile|^scripts/whitespacecleanup.sh|/(graph|mergely|native.history|yui.2.9)\.js|/test_dump_html_mails.ref.html|\.png|\.gif|\.ico|\.pot|\.po|\.mo|\.tar\.gz|\.diff)$'` | ||
Mads Kiilerich
|
r5517 | |||
Mads Kiilerich
|
r6353 | sed -i "s/`printf '\r'`//g" $files | ||
Mads Kiilerich
|
r5517 | sed -i -e "s,`printf '\t'`, ,g" $files | ||
sed -i -e "s, *$,,g" $files | ||||
Mads Kiilerich
|
r5585 | sed -i -e 's,\([^ ]\)\\$,\1 \\,g' -e 's,\(["'"'"']["'"'"']["'"'"']\) \\$,\1\\,g' $files | ||
Mads Kiilerich
|
r5517 | # ensure one trailing newline - remove empty last line and make last line include trailing newline: | ||
sed -i -e '$,${/^$/d}' -e '$a\' $files | ||||
sed -i -e 's,\([^ /]\){,\1 {,g' `hg loc '*.css'` | ||||
sed -i -e 's|^\([^ /].*,\)\([^ ]\)|\1 \2|g' `hg loc '*.css'` | ||||
hg mani | xargs chmod -x | ||||
hg loc 'set:!binary()&grep("^#!")&!(**_tmpl.py)&!(**/template**)' | xargs chmod +x | ||||
hg diff | ||||