repo.or.cz
/
minibook.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
status update: add 'till' variable to query
[minibook.git]
/
utils
/
checksyntax
blob
e04c9ccd7c84c757cb9836a0b3665d54fcb43425
1
#!/bin/sh
2
3
cd
..
4
echo
"=== Pyflakes"
5
find
.
-name
'*.py'
-exec
pyflakes
{}
\
;
6
echo
"=== PEP8 Style"
7
python utils
/
pep8.py
--filename
=*
.py
--repeat
.
8
cd
utils
9
echo
"=== Done"