Refine regexp in update-guix-package.scm script.

* build-aux/update-guix-package.scm (%guix-git-repo-push-url-regexp): Refine
regexp.

Change-Id: I562bad8f654fb797a6f0ddc5bf94feba203cb732
This commit is contained in:
Maxim Cournoyer 2025-06-25 12:11:06 +09:00
parent 2a345b89f0
commit 9f0ae51ce5
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -126,7 +126,7 @@ COMMIT. PROC receives the temporary directory file name as an argument."
(invoke "git" "worktree" "remove" "--force" tmp-directory)))))) (invoke "git" "worktree" "remove" "--force" tmp-directory))))))
(define %guix-git-repo-push-url-regexp (define %guix-git-repo-push-url-regexp
"(git.guix.gnu.org|codeberg.org/guix)/guix.git \\(push\\)") "(git.guix.gnu.org|codeberg.org/guix)/guix(.git)? \\(push\\)")
(define-syntax-rule (with-input-pipe-to-string prog arg ...) (define-syntax-rule (with-input-pipe-to-string prog arg ...)
(let* ((input-pipe (open-pipe* OPEN_READ prog arg ...)) (let* ((input-pipe (open-pipe* OPEN_READ prog arg ...))