Show More
@@ -1,23 +1,23 b'' | |||
|
1 | 1 | #!/bin/bash -x |
|
2 | 2 | |
|
3 | 3 | # Enforce some consistency in whitespace - just to avoid spurious whitespaces changes |
|
4 | 4 | |
|
5 |
files=`hg mani | egrep -v '/fontello/|/email_templates/|( |
|
|
5 | files=`hg mani | egrep -v '/fontello/|/email_templates/|(^LICENSE-MERGELY.html|^docs/Makefile|^scripts/whitespacecleanup.sh|/(graph|mergely|native.history)\.js|/test_dump_html_mails.ref.html|\.png|\.gif|\.ico|\.pot|\.po|\.mo|\.tar\.gz|\.diff)$'` | |
|
6 | 6 | |
|
7 | 7 | sed -i "s/`printf '\r'`//g" $files |
|
8 | 8 | sed -i -e "s,`printf '\t'`, ,g" $files |
|
9 | 9 | sed -i -e "s, *$,,g" $files |
|
10 | 10 | sed -i -e 's,\([^ ]\)\\$,\1 \\,g' -e 's,\(["'"'"']["'"'"']["'"'"']\) \\$,\1\\,g' $files |
|
11 | 11 | # ensure one trailing newline - remove empty last line and make last line include trailing newline: |
|
12 | 12 | sed -i -e '$,${/^$/d}' -e '$a\' $files |
|
13 | 13 | |
|
14 | 14 | sed -i -e 's,\([^ /]\){,\1 {,g' `hg loc '*.css'` |
|
15 | 15 | sed -i -e 's|^\([^ /].*,\)\([^ ]\)|\1 \2|g' `hg loc '*.css'` |
|
16 | 16 | |
|
17 | 17 | hg mani | xargs chmod -x |
|
18 | 18 | hg loc 'set:!binary()&grep("^#!")&!(**_tmpl.py)&!(**/template**)' | xargs chmod +x |
|
19 | 19 | |
|
20 | 20 | # isort is installed from dev_requirements.txt |
|
21 | 21 | isort --line-width 160 --wrap-length 160 --lines-after-imports 2 `hg loc '*.py'` |
|
22 | 22 | |
|
23 | 23 | hg diff |
|
1 | NO CONTENT: file was removed |
General Comments 0
You need to be logged in to leave comments.
Login now