diff options
author | Arun Isaac | 2024-01-11 16:41:08 +0000 |
---|---|---|
committer | Arun Isaac | 2024-01-11 16:41:08 +0000 |
commit | cd19e4bfe3695b931a6c64d7d1757be5f798acb4 (patch) | |
tree | 39b085e23e5e21c9dd8f87c54b3b99831e074454 /guix/forge | |
parent | 78ea0acf77b77fc8707deeb5084f2e8f31fff387 (diff) | |
download | guix-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')
-rw-r--r-- | guix/forge/forge.scm | 2 |
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) |