Modify copyright script to handle cases where there is only one year

in the copyright
This commit is contained in:
Bruce Momjian 2008-01-02 02:36:18 +00:00
parent 1af45f1d35
commit be6c3b5c2b
1 changed files with 3 additions and 1 deletions

View File

@ -1,12 +1,14 @@
#!/bin/sh
# $PostgreSQL: pgsql/src/tools/copyright,v 1.14 2007/01/10 02:41:28 momjian Exp $
# $PostgreSQL: pgsql/src/tools/copyright,v 1.15 2008/01/02 02:36:18 momjian Exp $
echo "Using current year: `date '+%Y'`"
rgrep -l 'Copyright.*PostgreSQL Global Development Group' | while read FILE
do
pipe sed 's/^\(.*Copyright (c) [12][0-9][0-9][0-9]\) \?- \?[12][0-9][0-9][0-9]\(, PostgreSQL Global Development Group.*\)$/\1-'`date '+%Y'`'\2/' $FILE
# handle cases where only one year appears
pipe sed 's/^\(.*Copyright (c) [12][0-9][0-9][0-9]\) \?\(, PostgreSQL Global Development Group.*\)$/\1-'`date '+%Y'`'\2/' $FILE
done
echo "Manually update doc/src/sgml/legal.sgml too" 1>&2