Report correct return value from pep8 check

Remove the '|| true' appended to the pep8 command to allow
the non-zero status to be returned properly.

Fix bug 1073380.

Change-Id: I1e212a9d596eb448ee7f6ac40106a05650b70473
This commit is contained in:
Brian Waldon 2012-10-30 17:25:07 -07:00
parent 069c3f545a
commit 9249a5da27

View File

@ -129,7 +129,7 @@ function run_pylint {
function run_pep8 {
echo "Running pep8 ..."
${command_wrapper} pep8 $included_dirs || true
${command_wrapper} pep8 $included_dirs
}
function run_sphinx {