* [bug#54617] [PATCH] home: services: zsh: Fix zshenv creation.
@ 2022-03-29 1:35 Brian Kubisiak
2022-04-03 10:37 ` bug#54617: " Ludovic Courtès
0 siblings, 1 reply; 2+ messages in thread
From: Brian Kubisiak @ 2022-03-29 1:35 UTC (permalink / raw)
To: 54617
Fixes a regression introduced by
4935501fd9f690d8990bb798237d51702b87fb3f that would skip generating
the user's ~/.config/zsh/.zshenv unless both of zshenv and
environment-variables are set in the configuration.
* gnu/home/services/shells.scm (zsh-get-configuration-files):
Generate ~/.config/zsh/.zshenv when only one of zshenv or
environment-variables is specified.
---
gnu/home/services/shells.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/home/services/shells.scm b/gnu/home/services/shells.scm
index 7b9769bcf3..b0147291fc 100644
--- a/gnu/home/services/shells.scm
+++ b/gnu/home/services/shells.scm
@@ -212,8 +212,8 @@ (define (zsh-file-by-field config field)
(define (zsh-get-configuration-files config)
`(("zprofile" ,(zsh-file-by-field config 'zprofile)) ;; Always non-empty
- ,@(if (and (zsh-field-not-empty? config 'zshenv)
- (zsh-field-not-empty? config 'environment-variables))
+ ,@(if (or (zsh-field-not-empty? config 'zshenv)
+ (zsh-field-not-empty? config 'environment-variables))
`(("zshenv" ,(zsh-file-by-field config 'zshenv))) '())
,@(if (zsh-field-not-empty? config 'zshrc)
`(("zshrc" ,(zsh-file-by-field config 'zshrc))) '())
--
2.34.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* bug#54617: [PATCH] home: services: zsh: Fix zshenv creation.
2022-03-29 1:35 [bug#54617] [PATCH] home: services: zsh: Fix zshenv creation Brian Kubisiak
@ 2022-04-03 10:37 ` Ludovic Courtès
0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2022-04-03 10:37 UTC (permalink / raw)
To: Brian Kubisiak; +Cc: 54617-done
Hi,
Brian Kubisiak <brian@kubisiak.com> skribis:
> Fixes a regression introduced by
> 4935501fd9f690d8990bb798237d51702b87fb3f that would skip generating
> the user's ~/.config/zsh/.zshenv unless both of zshenv and
> environment-variables are set in the configuration.
>
> * gnu/home/services/shells.scm (zsh-get-configuration-files):
> Generate ~/.config/zsh/.zshenv when only one of zshenv or
> environment-variables is specified.
Good catch! Applied, thanks.
Ludo’.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-04-03 10:38 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-29 1:35 [bug#54617] [PATCH] home: services: zsh: Fix zshenv creation Brian Kubisiak
2022-04-03 10:37 ` bug#54617: " Ludovic Courtès
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.