summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerrick Hendricks <derrick@nanorex.com>2008-10-01 20:08:53 +0000
committerDerrick Hendricks <derrick@nanorex.com>2008-10-01 20:08:53 +0000
commita8eaba514f0d1ca7e07039fcb497f3ffe8f531ca (patch)
tree78312c11d3bd2aabe8a23d9d67fe470de563ce35
parent546c7582cbca70c4d506c0a100188c7935ddeee5 (diff)
downloadnanoengineer-a8eaba514f0d1ca7e07039fcb497f3ffe8f531ca.tar.gz
nanoengineer-a8eaba514f0d1ca7e07039fcb497f3ffe8f531ca.zip
added back in the greps for W0611, W0403, and E0602 messages.
-rwxr-xr-xcad/src/tools/SEMBot/runPylint.sh8
1 files changed, 5 insertions, 3 deletions
diff --git a/cad/src/tools/SEMBot/runPylint.sh b/cad/src/tools/SEMBot/runPylint.sh
index 40f704126..adb105d19 100755
--- a/cad/src/tools/SEMBot/runPylint.sh
+++ b/cad/src/tools/SEMBot/runPylint.sh
@@ -71,14 +71,16 @@ popd
# (their output files have links in index.php)
# W0403 - Relative import %s. Emitted when an import statement uses a package-relative pathname.
-grep W0403 SVN-D/cad/src/pylint_* > W0403.txt
+cd Logs
+grep -r W0403 * > ../W0403.txt
# W0611 - Unused import %s. Emitted when an imported module or variable is not used.
-grep W0611 SVN-D/cad/src/pylint_* > W0611.txt
+grep -r W0611 * > ../W0611.txt
# E0602 - Undefined variable %s. Emitted when a non-builtin symbol is used, but no
# definition or import of it can be found.
-grep E0602 SVN-D/cad/src/pylint_* > E0602.txt
+grep -r E0602 * > ../E0602.txt
+cd ..
# Consider adding summary reports for the following:
# W0311 - Bad indentation