home: symlink-manager: Handle non-existing directory during cleanup.
* gnu/home/services/symlink-manager.scm (update-symlinks-script): Handle non-existing directory during cleanup. Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
ac8e987ce2
commit
435e1cef00
|
@ -157,6 +157,7 @@ subdirectory from XDG_CONFIG_HOME to generate a target path."
|
||||||
#t
|
#t
|
||||||
(G_ "Skipping ~a (not an empty directory)... done\n")
|
(G_ "Skipping ~a (not an empty directory)... done\n")
|
||||||
directory))
|
directory))
|
||||||
|
((= ENOENT errno) #t)
|
||||||
((= ENOTDIR errno) #t)
|
((= ENOTDIR errno) #t)
|
||||||
(else
|
(else
|
||||||
(apply throw args)))))))))
|
(apply throw args)))))))))
|
||||||
|
|
Reference in New Issue