Skip to content
Snippets Groups Projects
Commit 6262422b authored by Kurund Jalmi's avatar Kurund Jalmi
Browse files

copyright and version fixes

parent b9871345
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
for i in `find . -name '*.js' -or -name '*.module' -or -name '*.php' -or -name '*.po*' -or -name '*.tpl' -or -name '*.txt' -or -name '*.install' -or -name '*.inc' -or -name '*.test'`; do
echo $i;
perl -pi -e 's/CiviCRM version .\../CiviCRM version 4.5/' $i;
perl -pi -e 's/Copyright CiviCRM LLC \(c\) 2004-20../Copyright CiviCRM LLC (c) 2004-2014/' $i;
perl -pi -e 's/CiviCRM LLC \(c\) 2004-20../CiviCRM LLC (c) 2004-2014/' $i;
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment