~chipaca/unity-lens-video/custom-user-agent

« back to all changes in this revision

Viewing changes to scripts/check.sh

  • Committer: Janos Gyerik
  • Date: 2011-08-08 20:19:00 UTC
  • Revision ID: janos@axiom-20110808201900-rpq8pghds6gf8vnl
top 50 link now works

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
cd $(dirname "$0")/..
4
 
 
5
 
echo '### pep8'
6
 
pep8 . | grep -v 'line too long'
7
 
echo
8
 
 
9
 
echo '### pyflakes'
10
 
pyflakes .
11
 
echo
12
 
 
13
 
# eof