diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-11 17:26:34 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-11 17:26:34 +0000 |
commit | af5c6ad6b08f3130fba12b931f3d6475471580b2 (patch) | |
tree | fb272e7b37727db666180d0f70a5b0b3650bf3ca /tools | |
parent | dd675d84312842ebe51ebcccd693b83c0a02cab9 (diff) | |
download | chromium_src-af5c6ad6b08f3130fba12b931f3d6475471580b2.zip chromium_src-af5c6ad6b08f3130fba12b931f3d6475471580b2.tar.gz chromium_src-af5c6ad6b08f3130fba12b931f3d6475471580b2.tar.bz2 |
Update tools/git/update-copyrights.sh with the current year.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/9148027
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@117237 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/git/update-copyrights.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/git/update-copyrights.sh b/tools/git/update-copyrights.sh index 4112ef9..299362e 100755 --- a/tools/git/update-copyrights.sh +++ b/tools/git/update-copyrights.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright (c) 2011 The Chromium Authors. All rights reserved. +# Copyright (c) 2012 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. @@ -9,7 +9,7 @@ git diff --name-only $(git cl upstream)... | while read file; do cp "$file" "$tmp" # Rather than editing the temporary file, edit the original file in-place # so that we preserve file modes. - sed -i -e '1,4s/Copyright .c. .* The Chromium Authors/Copyright (c) 2011 The Chromium Authors/' "$file" + sed -i -e '1,4s/Copyright .c. .* The Chromium Authors/Copyright (c) 2012 The Chromium Authors/' "$file" if ! diff -q "$file" "$tmp" > /dev/null; then echo "updated $file" fi |