[git] GnuPG - branch, master, updated. gnupg-2.2.7-303-g2c35e67

by Tomi Leppänen cvs at cvs.gnupg.org
Tue Dec 11 08:43:09 CET 2018


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 GNU Privacy Guard".

The branch, master has been updated
       via  2c35e67e3475ec38ff49953d79bd0f734d6db542 (commit)
      from  e154fba30ba0d5f29040a33f5c1b5c25b441b69f (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 2c35e67e3475ec38ff49953d79bd0f734d6db542
Author: Tomi Leppänen <tomi.leppanen at jolla.com>
Date:   Tue Dec 11 08:42:33 2018 +0100

    tools: Use POSIX compatible arguments for find
    
    * tools/addgnupghome (filelist): Remove bashism.

diff --git a/tools/addgnupghome b/tools/addgnupghome
index e13c3cd..718b222 100755
--- a/tools/addgnupghome
+++ b/tools/addgnupghome
@@ -107,7 +107,7 @@ if [ ! -d /etc/skel/.gnupg ]; then
     exit 1
 fi
 cd "/etc/skel/.gnupg" || (error "error cd-ing to \`/etc/skel/.gnupg'"; exit 1)
-filelist=$(find . \( -type f -or -type d \) -not -name '*~' -not -name . -print)
+filelist=$(find . \( -type f -o -type d \) '!' -name '*~' '!' -name . -print)
 
 
 if ! umask 0077 ; then

-----------------------------------------------------------------------

Summary of changes:
 tools/addgnupghome | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
The GNU Privacy Guard
http://git.gnupg.org




More information about the Gnupg-commits mailing list