blob: 674823ceb21a2923fad5aa157a7b7f2de058eddd [file] [log] [blame]
#!/bin/sh
# Run the `update-copyright-year' script on all files in the git repository,
# taking care of exceptions stored in file `no-copyright'.
topdir=`git rev-parse --show-toplevel`
toolsdir=`dirname $0`
git ls-files --full-name $topdir \
| sed "s|^|$topdir/|" \
| grep -vFf $toolsdir/no-copyright \
| xargs $toolsdir/update-copyright-year
# EOF