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

« back to all changes in this revision

Viewing changes to scripts/check.sh

  • Committer: Janos Gyerik
  • Date: 2012-05-21 18:31:58 UTC
  • Revision ID: janos@axiom-20120521183158-kvtqzuo6yhe3mdzq
added example configuration for logging to file

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