Ignore extensions/sapis named skeleton

This commit is contained in:
Jason Greene 2002-03-13 18:39:42 +00:00
parent 795c206389
commit 94e6810a2a

View File

@ -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