utils: 'current-source-directory' gracefully handles lack of source info.

* guix/utils.scm (current-source-directory): Add case for when FILE-NAME
is #f.
This commit is contained in:
Ludovic Courtès 2016-06-19 22:30:34 +02:00
parent cbbbb7be0f
commit a68d0f6fd5
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 6 additions and 3 deletions

View File

@ -727,9 +727,12 @@ be determined."
;; the absolute file name by looking at %LOAD-PATH; doing this at
;; run time rather than expansion time is necessary to allow files
;; to be moved on the file system.
(if (string-prefix? "/" file-name)
(dirname file-name)
#`(absolute-dirname #,file-name)))
(cond ((not file-name)
#f) ;raising an error would upset Geiser users
((string-prefix? "/" file-name)
(dirname file-name))
(else
#`(absolute-dirname #,file-name))))
(_
#f))))))