mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
guix: Make sure UPDATES-DIR is valid.
* scripts/guix.in: Make sure UPDATES-DIR is not #f.
This commit is contained in:
parent
f651b477b7
commit
525ca3e912
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@
|
|||
(and=> (getenv "HOME")
|
||||
(cut string-append <> "/.config")))
|
||||
(cut string-append <> "/guix/latest"))))
|
||||
(when (file-exists? updates-dir)
|
||||
(when (and updates-dir (file-exists? updates-dir))
|
||||
(push! updates-dir %load-path)
|
||||
(push! updates-dir %load-compiled-path)))))
|
||||
|
||||
|
|
Loading…
Reference in a new issue