aboutsummaryrefslogtreecommitdiff
path: root/guix/forge/forge.scm
diff options
context:
space:
mode:
authorArun Isaac2024-01-11 16:41:08 +0000
committerArun Isaac2024-01-11 16:41:08 +0000
commitcd19e4bfe3695b931a6c64d7d1757be5f798acb4 (patch)
tree39b085e23e5e21c9dd8f87c54b3b99831e074454 /guix/forge/forge.scm
parent78ea0acf77b77fc8707deeb5084f2e8f31fff387 (diff)
downloadguix-forge-cd19e4bfe3695b931a6c64d7d1757be5f798acb4.tar.gz
guix-forge-cd19e4bfe3695b931a6c64d7d1757be5f798acb4.tar.lz
guix-forge-cd19e4bfe3695b931a6c64d7d1757be5f798acb4.zip
forge: Allow private variables to be built.
Allowing only exported variables to be built is an unnecessary source of errors and user confusion. * guix/forge/forge.scm (guix-channel-job-gexp): Allow private variables to be built.
Diffstat (limited to 'guix/forge/forge.scm')
-rw-r--r--guix/forge/forge.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/forge/forge.scm b/guix/forge/forge.scm
index f7d89b4..c66d084 100644
--- a/guix/forge/forge.scm
+++ b/guix/forge/forge.scm
@@ -423,7 +423,7 @@ that were built."
#$(if variables
#~(map (match-lambda
((module-name variable-name)
- (module-ref (resolve-interface module-name)
+ (module-ref (resolve-module module-name)
variable-name)))
'#$(map (lambda (variable)
(list (variable-specification-module variable)