index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Allan McRae <allan@archlinux.org> | 2019-11-05 15:25:52 +1000 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2019-11-05 15:25:52 +1000 |
commit | 27955a0fee16f817b5569e0bc29bc1498a87ea68 (patch) | |
tree | 842859c2d69f8414cd86c519d895d85c21ae5e7c /build-aux | |
parent | 1bfae7d14a7bdad777e82912c5c6883deb11aee5 (diff) |
-rwxr-xr-x | build-aux/update-copyright | 8 |
diff --git a/build-aux/update-copyright b/build-aux/update-copyright new file mode 100755 index 00000000..eef368b8 --- /dev/null +++ b/build-aux/update-copyright @@ -0,0 +1,8 @@ +#! /bin/sh + +OLD=$1 +NEW=$2 + +for file in $(git grep -l "Copyright .* Pacman Development" | grep -v "\.po"); do \ + sed -i -e "/Copyright (/s/-${OLD}/-${NEW}/" -e "/Copyright (/s/ ${OLD}/ ${OLD}-${NEW}/" "$file" +done |