~ruther/guix-local

525ca3e912507d45e1df29e7ab88b090f8d19dd4 — Ludovic Courtès 13 years ago f651b47
guix: Make sure UPDATES-DIR is valid.

* scripts/guix.in: Make sure UPDATES-DIR is not #f.
1 files changed, 1 insertions(+), 1 deletions(-)

M scripts/guix.in
M scripts/guix.in => scripts/guix.in +1 -1
@@ 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)))))