mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-02-05 19:09:58 +08:00
Modify copyright script to handle cases where there is only one year
in the copyright
This commit is contained in:
parent
1af45f1d35
commit
be6c3b5c2b
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user