diff options
author | Jason Greene <jason@php.net> | 2002-03-13 18:39:42 +0000 |
---|---|---|
committer | Jason Greene <jason@php.net> | 2002-03-13 18:39:42 +0000 |
commit | 94e6810a2a3e189cf729bdbae8f45cd9d7987ad6 (patch) | |
tree | e514d8502f465f90d5657af27f8b5ee847abd864 | |
parent | 795c20638909da788ce379c9b7bdf6f65e181275 (diff) | |
download | php-git-94e6810a2a3e189cf729bdbae8f45cd9d7987ad6.tar.gz |
Ignore extensions/sapis named skeleton
-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 |