me
/
guix
Archived
1
0
Fork 0

import: opam: Fix error on unknown field value.

* guix/import/opam.scm (metadata-ref): Return #f if field is present,
but its content is of unknown form.
master
Julien Lepiller 2021-11-22 00:16:52 +01:00
parent b2d8174400
commit 24aa7b3c21
No known key found for this signature in database
GPG Key ID: 53D457B2D636EE82
1 changed files with 2 additions and 1 deletions

View File

@ -230,7 +230,8 @@ path to the repository."
(('list-pat . stuff) stuff)
(('string-pat stuff) stuff)
(('multiline-string stuff) stuff)
(('dict records ...) records))
(('dict records ...) records)
(_ #f))
acc))))
#f file))