Fixed sed error on Mac OS X and updated copyright on a few last files

This commit is contained in:
Sam Lantinga 2016-01-02 10:38:51 -08:00
parent ac444cd313
commit 68a3272852
6 changed files with 6 additions and 6 deletions

View file

@ -4,6 +4,6 @@ find . -type f -exec grep -Il "Copyright" {} \; \
| grep -v \.hg \
| while read i; \
do \
sed -ie "s/\(.*Copyright.*\)[0-9]\{4\}\( *Sam Lantinga\)/\1`date +%Y`\2/" "$i"; \
LC_ALL=C sed -ie "s/\(.*Copyright.*\)[0-9]\{4\}\( *Sam Lantinga\)/\1`date +%Y`\2/" "$i"; \
rm "${i}e"; \
done