diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2023-01-04 13:01:09 +0100 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2023-01-04 13:01:09 +0100 |
commit | 4d7803eecaef68eeb90ded5c8919c2640c98a3f9 (patch) | |
tree | ee7bcc20af18eb0ef75435de03d9cfd446d038e4 /dist-tools | |
parent | bbc0e7aabf83c6f3b9f6ed93b80fba7d0e4492af (diff) | |
download | fetchmail-4d7803eecaef68eeb90ded5c8919c2640c98a3f9.tar.gz fetchmail-4d7803eecaef68eeb90ded5c8919c2640c98a3f9.tar.bz2 fetchmail-4d7803eecaef68eeb90ded5c8919c2640c98a3f9.zip |
git-commit-po-updates.sh: fix parameter name to avoid crash under set -u
Diffstat (limited to 'dist-tools')
-rwxr-xr-x | dist-tools/git-commit-po-updates.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dist-tools/git-commit-po-updates.sh b/dist-tools/git-commit-po-updates.sh index f7c4d759..0bcdb6f4 100755 --- a/dist-tools/git-commit-po-updates.sh +++ b/dist-tools/git-commit-po-updates.sh @@ -115,7 +115,7 @@ done git diff -G '^"(Project-Id-Version|PO-Revision-Date):' --name-only po/*.po \ | while read pofile ; do if ! handle_po "$pofile" "Update" "to" ; then - echo "There were errors updating $nfile" >&2 ; rc=1 + echo "There were errors updating $pofile" >&2 ; rc=1 fi done |