mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: nss-certs: Use invoke.
* gnu/packages/certs.scm (nss-certs)[arguments]: Use invoke to detect errors while running 'certdata2pem.py'.
This commit is contained in:
parent
f050ebcfed
commit
dbf5b1186e
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ (define (maybe-install-cert file)
|
|||
(mkdir-p certsdir)
|
||||
(with-directory-excursion "nss/lib/ckfw/builtins/"
|
||||
;; extract single certificates from blob
|
||||
(system* "certdata2pem.py" "certdata.txt")
|
||||
(invoke "certdata2pem.py" "certdata.txt")
|
||||
;; copy selected .pem files into the output
|
||||
(for-each maybe-install-cert
|
||||
(find-files "." ".*\\.pem")))
|
||||
|
|
Loading…
Reference in a new issue