guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/06: describe: Fix typo in 'manifest-entry-with-provenance'.


From: guix-commits
Subject: 04/06: describe: Fix typo in 'manifest-entry-with-provenance'.
Date: Mon, 22 Feb 2021 17:44:27 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit ce2ba3431a71effa2f9f9f888f0e8ad9e670cb72
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Mon Feb 22 23:33:47 2021 +0100

    describe: Fix typo in 'manifest-entry-with-provenance'.
    
    * guix/describe.scm (manifest-entry-with-provenance): Fix first argument
    to 'assq'.
---
 guix/describe.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/describe.scm b/guix/describe.scm
index 6a31c70..03569b1 100644
--- a/guix/describe.scm
+++ b/guix/describe.scm
@@ -182,7 +182,7 @@ property of manifest entries, or #f if it could not be 
determined."
   "Return ENTRY with an additional 'provenance' property if it's not already
 there."
   (let ((properties (manifest-entry-properties entry)))
-    (if (assq 'properties properties)
+    (if (assq 'provenance properties)
         entry
         (let ((item (manifest-entry-item entry)))
           (manifest-entry



reply via email to

[Prev in Thread] Current Thread [Next in Thread]