diff options
author | John Wiegley <johnw@newartisans.com> | 2019-01-25 15:47:56 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-25 15:47:56 -0800 |
commit | d167ef36962614be5fcba22a18f8f1abc91e02fd (patch) | |
tree | 00edc90da69f09192d37ef795e370059f7dbd846 /tools | |
parent | b21ce8f174b9e0c65339bc5042c80f435fe01dc7 (diff) | |
parent | 4bddaff78ec1ee99521eb8774cafe3a1e7c6d36c (diff) | |
download | fork-ledger-d167ef36962614be5fcba22a18f8f1abc91e02fd.tar.gz fork-ledger-d167ef36962614be5fcba22a18f8f1abc91e02fd.tar.bz2 fork-ledger-d167ef36962614be5fcba22a18f8f1abc91e02fd.zip |
Merge pull request #1743 from scfc/move-garbage-dat-to-test-using-it
Move garbage-input.dat to test case using it
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/update_copyright_year.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/update_copyright_year.sh b/tools/update_copyright_year.sh index db9541d4..ab08a947 100755 --- a/tools/update_copyright_year.sh +++ b/tools/update_copyright_year.sh @@ -5,7 +5,7 @@ # This script will replace the last year of Copyright statements with the first # argument of this script (defaulting to the current year). -# Copyright (c) 2016 Alexis Hildebrandt +# Copyright (c) 2016, 2019 Alexis Hildebrandt # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -31,6 +31,6 @@ YEAR=${1:-$(date +%Y)} GREP=${2:-egrep} ${GREP} -Rl 'Copyright.*Wiegley' $(git ls-files | cut -d / -f1 | uniq) \ - | ${GREP} -v "(test/garbage-input.dat|$(basename $0))" \ + | ${GREP} -v "(test/regress/25A099C9.dat|$(basename $0))" \ | xargs sed -i '' -e "s/\(Copyright.*\)-20[0-9]\{2\}/\1-${YEAR}/" |