aboutsummaryrefslogtreecommitdiff
path: root/check_pep8.sh
diff options
context:
space:
mode:
authorFlorian Zeitz <florob@babelmonkeys.de>2016-09-13 12:01:33 +0200
committerFlorian Zeitz <florob@babelmonkeys.de>2016-09-13 12:01:33 +0200
commit4ac9c9ad6bf053bd6cbfd11f7844f4d4538ff0e0 (patch)
treecaef3c0da037cc4452d4ebeb4dbd77199fa63b9d /check_pep8.sh
parentfbcbc3743e9179738244a96be54aa588e44314cb (diff)
Add check_pep8.sh
Diffstat (limited to 'check_pep8.sh')
-rwxr-xr-xcheck_pep8.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/check_pep8.sh b/check_pep8.sh
new file mode 100755
index 0000000..068c226
--- /dev/null
+++ b/check_pep8.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+pep8 .
+[ $? = 0 ] && echo "Success!" || echo "There were some warnings."