me
/
guix
Archived
1
0
Fork 0

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

* guix/scripts/environment.scm (suggest-command-name): Handle the case
where 'scandir' returns #f.
master
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
1 changed files with 1 additions and 1 deletions

View File

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