inferior: 'cached-channel-instance' always returns a directory.
This is a followup to b1fc98d6b0
.
* guix/inferior.scm (cached-channel-instance): When AUTHENTICATE? is
false, return (derivation->output-path profile).
This commit is contained in:
parent
eb614420f6
commit
a9cc79d9f3
1 changed files with 1 additions and 1 deletions
|
@ -816,7 +816,7 @@ determines whether CHANNELS are authenticated."
|
||||||
(return cached))
|
(return cached))
|
||||||
(mbegin %store-monad
|
(mbegin %store-monad
|
||||||
(add-temp-root* (derivation->output-path profile))
|
(add-temp-root* (derivation->output-path profile))
|
||||||
(return profile))))))))
|
(return (derivation->output-path profile)))))))))
|
||||||
|
|
||||||
(define* (inferior-for-channels channels
|
(define* (inferior-for-channels channels
|
||||||
#:key
|
#:key
|
||||||
|
|
Reference in a new issue