environment: Suggestion code gracefully handles empty "/bin" directories.
* guix/scripts/environment.scm (suggest-command-name): Handle the case where 'scandir' returns #f.master
parent
7197710121
commit
16e9e53838
|
@ -567,7 +567,7 @@ command name."
|
|||
(_ #t)))
|
||||
|
||||
(match (scandir (string-append profile "/bin") not-dot?)
|
||||
(() #f)
|
||||
((or #f ()) #f)
|
||||
(available
|
||||
(match command
|
||||
((executable _ ...)
|
||||
|
|
Reference in New Issue