mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
disarchive-manifest: Exclude the Chromium tarball.
* etc/disarchive-manifest.scm (disarchive-collection): Exclude "chromium-" tarballs.
This commit is contained in:
parent
ad878a2c5e
commit
eab5366e67
1 changed files with 8 additions and 0 deletions
|
@ -105,6 +105,14 @@ (define (disarchive-collection origins)
|
||||||
(and=> (origin-hash origin)
|
(and=> (origin-hash origin)
|
||||||
content-hash-value)
|
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)))
|
(origin->disarchive origin)))
|
||||||
origins)
|
origins)
|
||||||
#:copy? #t))
|
#:copy? #t))
|
||||||
|
|
Loading…
Reference in a new issue