environment: Suggestion code gracefully handles empty "/bin" directories.

* guix/scripts/environment.scm (suggest-command-name): Handle the case
where 'scandir' returns #f.
This commit is contained in:
Ludovic Courtès 2021-12-10 12:27:58 +01:00
parent 7197710121
commit 16e9e53838
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -567,7 +567,7 @@ (define not-dot?
(_ #t)))
(match (scandir (string-append profile "/bin") not-dot?)
(() #f)
((or #f ()) #f)
(available
(match command
((executable _ ...)