
Module: ppl/ppl Branch: master Commit: 073e9bd3b423ea3e9eb5b7a62912b8b1e5f6b8fb URL: http://www.cs.unipr.it/git/gitweb.cgi?p=ppl/ppl.git;a=commit;h=073e9bd3b423e...
Author: Roberto Bagnara roberto.bagnara@bugseng.com Date: Thu Jan 1 10:59:51 2015 +0100
Extended copyright years.
---
devtools/bump_copyright_years | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/devtools/bump_copyright_years b/devtools/bump_copyright_years index bd03f2b..7eb9a1c 100755 --- a/devtools/bump_copyright_years +++ b/devtools/bump_copyright_years @@ -2,7 +2,7 @@ temp_file=`mktemp /tmp/bump_copyright_years.XXXXXXXXXX` || exit 1 find . -type f -print0 | while read -d $'\0' file do - sed -e "s/Copyright (C) 2010-2015 BUGSENG srl/Copyright (C) 2010-2015 BUGSENG srl/g" <$file >$temp_file + sed -e "s/Copyright (C) 2010-2015 BUGSENG srl/Copyright (C) 2010-2016 BUGSENG srl/g" <$file >$temp_file chmod --reference=$file $temp_file mv -f $temp_file $file done