commit: 686c9b28adc4727315aee66cd4743313db525a8c
Author: Rick Farina (Zero_Chaos) <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 28 13:54:37 2014 +0000
Commit: Richard Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Thu Aug 28 13:54:37 2014 +0000
URL:
http://sources.gentoo.org/gitweb/?p=proj/qa-scripts.git;a=commit;h=686c9b28
whitespace fixes so my hilighting looks normal
---
depcheck | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/depcheck b/depcheck
index e715e81..a0b022b 100755
--- a/depcheck
+++ b/depcheck
@@ -226,19 +226,19 @@ check_package() {
check_category() {
local errors=0
-
+
for package in `ls "${PKG_DIR}/${1}"`; do
-
+
check_package "${1}/${package}"
-
+
if [ $? -ne 0 ]; then
errors=1
fi
-
+
done;
-
+
return $errors
-
+
}
BINNAME=`basename ${0}`