Remove leftover debugging expressions.
* guix/build/utils.scm (directory-exists?): Remove leftover debugging expressions.
This commit is contained in:
parent
dcee50c114
commit
9f55cf8d56
|
@ -23,10 +23,9 @@
|
||||||
|
|
||||||
(define (directory-exists? dir)
|
(define (directory-exists? dir)
|
||||||
"Return #t if DIR exists and is a directory."
|
"Return #t if DIR exists and is a directory."
|
||||||
(pk 'dir-exists? dir
|
(let ((s (stat dir #f)))
|
||||||
(let ((s (pk 'stat dir (stat dir #f))))
|
|
||||||
(and s
|
(and s
|
||||||
(eq? 'directory (stat:type s))))))
|
(eq? 'directory (stat:type s)))))
|
||||||
|
|
||||||
(define (search-path-as-list sub-directories input-dirs)
|
(define (search-path-as-list sub-directories input-dirs)
|
||||||
"Return the list of directories among SUB-DIRECTORIES that exist in
|
"Return the list of directories among SUB-DIRECTORIES that exist in
|
||||||
|
|
Loading…
Reference in New Issue