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

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 50a99b17ec utils/git-origin: Fix generated sexp when #:recursive? is 
#t.
50a99b17ec is described below

commit 50a99b17ecd71430b206b9d4b5e66c11377b6191
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Wed Feb 11 16:46:01 2026 +0900

    utils/git-origin: Fix generated sexp when #:recursive? is #t.
    
    * guix/import/utils.scm (git-origin): Wrap recursive? in extra list.
    
    Change-Id: Id2a9d918fd67fe93bbc42bdbe2bc324b74ecc683
---
 guix/import/utils.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/import/utils.scm b/guix/import/utils.scm
index a35252b343..5f8a4c22f6 100644
--- a/guix/import/utils.scm
+++ b/guix/import/utils.scm
@@ -222,7 +222,7 @@ the commit hash, the downloaded directory and its content 
hash."
             (url ,(and (not (eq? url 'null)) url))
             (commit ,commit)
             ,@(if recursive?
-                  '(recursive? #t)
+                  '((recursive? #t))
                   '())))
      (file-name (git-file-name name version))
      (sha256

Reply via email to