diff options
Diffstat (limited to 'check_pep8.sh')
-rwxr-xr-x | check_pep8.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/check_pep8.sh b/check_pep8.sh new file mode 100755 index 0000000..d988d09 --- /dev/null +++ b/check_pep8.sh @@ -0,0 +1,3 @@ +#!/bin/sh +pep8 --ignore=E402 . +[ $? = 0 ] && echo "Success!" || echo "There were some warnings." |