diff options
-rwxr-xr-x | scripts/credits | 4 |
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 |