diff options
| author | Maxim Cournoyer <maxim@guixotic.coop> | 2025-06-25 12:11:06 +0900 |
|---|---|---|
| committer | Maxim Cournoyer <maxim@guixotic.coop> | 2025-06-25 23:00:59 +0900 |
| commit | 9f0ae51ce5662d77be4ddb441aab94899f27033d (patch) | |
| tree | 08bf77962935b7ac4cdd749e6c8f5d19fbb39572 /build-aux | |
| parent | 2a345b89f06f04a7384577e0b04d6d5f6fa74169 (diff) | |
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
Diffstat (limited to 'build-aux')
| -rw-r--r-- | build-aux/update-guix-package.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/update-guix-package.scm b/build-aux/update-guix-package.scm index b86fbeec87d..d37229c5ecc 100644 --- a/build-aux/update-guix-package.scm +++ b/build-aux/update-guix-package.scm @@ -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)/guix(.git)? \\(push\\)") (define-syntax-rule (with-input-pipe-to-string prog arg ...) (let* ((input-pipe (open-pipe* OPEN_READ prog arg ...)) |
