summaryrefslogtreecommitdiff
path: root/scripts/credits
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/credits')
-rwxr-xr-xscripts/credits4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/credits b/scripts/credits
index 2bc8eae67e..658580cdd7 100755
--- a/scripts/credits
+++ b/scripts/credits
@@ -20,5 +20,7 @@ do
*/
END
- awk "$awkprog" $what/*/CREDITS | sort -f >> $file
+ # Do not process skeleton #
+ files=`find "$what" -name CREDITS | grep -v "$what"/skeleton/CREDITS`
+ awk "$awkprog" $files | sort -f >> $file
done