diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-06-01 22:52:03 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-06-05 22:54:06 +0200 |
commit | 512b9e2da26968ebafdd47f701edd8fc3936d3e8 (patch) | |
tree | a9bed169cbac380172a4d2e2174e07d57cc63a8f /guix/git-authenticate.scm | |
parent | 41f443c90af57f9537eccb1a1a45c6e11b377a32 (diff) |
git-authenticate: Don't hard-code "origin/" for keyring reference.
* guix/git-authenticate.scm (load-keyring-from-reference): Remove
hard-coded "origin/". Use BRANCH-ALL instead of BRANCH-REMOTE.
Diffstat (limited to 'guix/git-authenticate.scm')
-rw-r--r-- | guix/git-authenticate.scm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/guix/git-authenticate.scm b/guix/git-authenticate.scm index 4df56fab59..4217ab6d27 100644 --- a/guix/git-authenticate.scm +++ b/guix/git-authenticate.scm @@ -161,9 +161,7 @@ may not be ASCII-armored." (define (load-keyring-from-reference repository reference) "Load the '.key' files from the tree at REFERENCE in REPOSITORY and return an OpenPGP keyring." - (let* ((reference (branch-lookup repository - (string-append "origin/" reference) - BRANCH-REMOTE)) + (let* ((reference (branch-lookup repository reference BRANCH-ALL)) (target (reference-target reference)) (commit (commit-lookup repository target)) (tree (commit-tree commit))) |