guix_mirror_bot pushed a commit to branch master
in repository guix.

commit b8164e5f0ec198db3839137a8c2d6d841ec40789
Author: Ludovic Courtès <[email protected]>
AuthorDate: Thu Jul 17 15:25:44 2025 +0200

    build: Update push URL regexp for ‘update-guix-package’ script.
    
    * build-aux/update-guix-package.scm (%guix-git-repo-push-url-regexp):
    Add pattern for “[email protected]” SSH URLs.
    
    Change-Id: I88d8e3ca6ed4353ad692a919113bb5f3eec44ae5
---
 build-aux/update-guix-package.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/build-aux/update-guix-package.scm 
b/build-aux/update-guix-package.scm
index d37229c5ec..62a7ca4637 100644
--- a/build-aux/update-guix-package.scm
+++ b/build-aux/update-guix-package.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2017, 2018 Ludovic Courtès <[email protected]>
+;;; Copyright © 2017-2018, 2025 Ludovic Courtès <[email protected]>
 ;;; Copyright © 2020, 2025 Maxim Cournoyer <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
@@ -126,7 +126,7 @@ COMMIT.  PROC receives the temporary directory file name as 
an argument."
          (invoke "git" "worktree" "remove" "--force" tmp-directory))))))
 
 (define %guix-git-repo-push-url-regexp
-  "(git.guix.gnu.org|codeberg.org/guix)/guix(.git)? \\(push\\)")
+  "(git.guix.gnu.org|codeberg.org/guix|[email protected]:guix)/guix(.git)? 
\\(push\\)")
 
 (define-syntax-rule (with-input-pipe-to-string prog arg ...)
   (let* ((input-pipe (open-pipe* OPEN_READ prog arg ...))

Reply via email to