From b8164e5f0ec198db3839137a8c2d6d841ec40789 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Thu, 17 Jul 2025 15:25:44 +0200 Subject: [PATCH] =?UTF-8?q?build:=20Update=20push=20URL=20regexp=20for=20?= =?UTF-8?q?=E2=80=98update-guix-package=E2=80=99=20script.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * build-aux/update-guix-package.scm (%guix-git-repo-push-url-regexp): Add pattern for “git@codeberg.org” 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 +;;; Copyright © 2017-2018, 2025 Ludovic Courtès ;;; Copyright © 2020, 2025 Maxim Cournoyer ;;; ;;; 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|git@codeberg.org:guix)/guix(.git)? \\(push\\)") (define-syntax-rule (with-input-pipe-to-string prog arg ...) (let* ((input-pipe (open-pipe* OPEN_READ prog arg ...))