[gui] Move error handling into a separate function.
[ttfautohint.git] / update-copyright
blob12424b4cbf48b557af020eb6b23588d6ebc8eebc
1 # Run the `update-copyright' script.
3 # Do this after calling `bootstrap' (which checks out the `.gnulib'
4 # submodule)
6 UPDATE_COPYRIGHT=./.gnulib/build-aux/update-copyright
8 git ls-files \
9 | grep -vFf no-copyright \
10 | UPDATE_COPYRIGHT_HOLDER="by Werner Lemberg" \
11   UPDATE_COPYRIGHT_USE_INTERVALS=1 \
12   UPDATE_COPYRIGHT_MAX_LINE_LENGTH=78 \
13   xargs $UPDATE_COPYRIGHT
15 # EOF