[git] gnupg-doc - branch, master, updated. e0a846a50bd44c95c4331a4c24e049c21124a1c4
by Werner Koch
cvs at cvs.gnupg.org
Sat Mar 18 18:24:41 CET 2017
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The GnuPG website and other docs".
The branch, master has been updated
via e0a846a50bd44c95c4331a4c24e049c21124a1c4 (commit)
from b14f59186ce977da720ba5b3e78ecb28d82c3828 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit e0a846a50bd44c95c4331a4c24e049c21124a1c4
Author: Werner Koch <wk at gnupg.org>
Date: Sat Mar 18 18:21:42 2017 +0100
tools: Minor update to the scrips.
diff --git a/tools/append-to-donors.sh b/tools/append-to-donors.sh
index 6ce4e6b..cd87f43 100755
--- a/tools/append-to-donors.sh
+++ b/tools/append-to-donors.sh
@@ -79,7 +79,11 @@ send_thanks () {
else
xidnmail=""
fi
- xqpmail=$(mu-tool 2047 -c utf-8 "$xmail")
+ if [ x"$xidnmail" = x"$xmail" ]; then
+ xqpmail="$xmail"
+ else
+ xqpmail=$(mu-tool 2047 -c utf-8 "$xmail")
+ fi
( cat <<EOF
From: donations at gnupg.org
To: $xqpmail
diff --git a/tools/build-website.sh b/tools/build-website.sh
index e738491..d4a5330 100755
--- a/tools/build-website.sh
+++ b/tools/build-website.sh
@@ -219,7 +219,7 @@ fi
if [ -n "$sync_blog" ]; then
cd "$sync_blog"
- rsync -vr --links --exclude '*~' --exclude '*.sh' \
+ rsync -rt --links --exclude '*~' --exclude '*.sh' \
--exclude '*tmp' --exclude '*.org' --exclude headlines.txt \
. ${htdocs_blog}/
any_sync=yes
@@ -234,7 +234,8 @@ fi
# Print warnings when the scripts are out of date
# (For security reasons the scripts need to be installed manually.)
#
-for f in trigger-website-build build-website.sh mkkudos.sh ; do
+for f in trigger-website-build build-website.sh mkkudos.sh \
+ append-to-donors.sh ; do
if ! cmp -s ${HOME}/bin/$f tools/$f ; then
echo "$pgm: Warning: A newer version of $f is available" >&2;
fi
-----------------------------------------------------------------------
Summary of changes:
tools/append-to-donors.sh | 6 +++++-
tools/build-website.sh | 5 +++--
2 files changed, 8 insertions(+), 3 deletions(-)
hooks/post-receive
--
The GnuPG website and other docs
http://git.gnupg.org
More information about the Gnupg-commits
mailing list