Browse Source

Moved the check to the makefile.

master
Julio Biason 14 years ago
parent
commit
dbfba45c45
  1. 3
      check
  2. 6
      makefile

3
check

@ -1,3 +0,0 @@
#!/bin/sh
find . -name '*.py' -exec pyflakes {} \;
python utils/pep8.py --filename=*.py --repeat .

6
makefile

@ -7,3 +7,9 @@ doc:
pot:
xgettext --language=Python --keyword=_ --keyword=N_ --output=i18n/mitter.pot mitter mitterlib/ui/ui_pygtk.py mitterlib/network/twitter.py
check:
find . -name '*.py' -exec pyflakes {} \;
python utils/pep8.py --filename=*.py --repeat .
.PHONY: check pot doc deb

Loading…
Cancel
Save