From 525ca3e912507d45e1df29e7ab88b090f8d19dd4 Mon Sep 17 00:00:00 2001
From: Ludovic Courtès <ludo@gnu.org>
Date: Thu, 21 Feb 2013 10:27:34 +0100
Subject: guix: Make sure UPDATES-DIR is valid.

* scripts/guix.in: Make sure UPDATES-DIR is not #f.
---
 scripts/guix.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'scripts')

diff --git a/scripts/guix.in b/scripts/guix.in
index 1315789a9c..4015560cd5 100644
--- a/scripts/guix.in
+++ b/scripts/guix.in
@@ -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)))))
 
-- 
cgit v1.2.3