me
/
guix
Archived
1
0
Fork 0

disarchive-manifest: Exclude the Chromium tarball.

* etc/disarchive-manifest.scm (disarchive-collection): Exclude
"chromium-" tarballs.
master
Ludovic Courtès 2022-08-06 16:56:05 +02:00
parent ad878a2c5e
commit eab5366e67
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 8 additions and 0 deletions

View File

@ -105,6 +105,14 @@ an empty directory if ORIGIN could not be disassembled."
(and=> (origin-hash origin)
content-hash-value)
;; FIXME: Exclude the Chromium tarball
;; because it's huge and "disarchive
;; disassemble" exceeds the max-silent
;; timeout.
(not (string-prefix?
"chromium-"
(origin-actual-file-name origin)))
(origin->disarchive origin)))
origins)
#:copy? #t))