This is an automated email from the git hooks/post-receive script.

lfam pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new b685337  doc: Quote a URL to avoid misinterpretation by the shell.
b685337 is described below

commit b685337c9453ef76e27685ced2ab6b1f31d75395
Author: Leo Famulari <[email protected]>
AuthorDate: Fri Apr 9 20:46:34 2021 -0400

    doc: Quote a URL to avoid misinterpretation by the shell.
    
    Otherwise, the shell tries to perform pattern-matching based on the "?"
    character.
    
    Reported by nij in #guix.
    
    * doc/guix.texi (Binary Installation): Add quotes around 
OPENPGP-SIGNING-KEY-URL.
---
 doc/guix.texi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/guix.texi b/doc/guix.texi
index edd91d8..d4320f1 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -652,7 +652,7 @@ If that command fails because you do not have the required 
public key,
 then run this command to import it:
 
 @example
-$ wget @value{OPENPGP-SIGNING-KEY-URL} \
+$ wget '@value{OPENPGP-SIGNING-KEY-URL}' \
       -qO - | gpg --import -
 @end example
 

Reply via email to