home: symlink-manager: Use 'file-is-directory?'.

* gnu/home/services/symlink-manager.scm (update-symlinks-script)[directory?]:
Remove.
Change callers to use 'file-is-directory?' instead.
This commit is contained in:
Ludovic Courtès 2022-02-18 17:02:46 +01:00
parent cf803b71c7
commit e1b38046a6
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -101,9 +101,6 @@ (define (get-target-path path)
(define (get-backup-path path)
(string-append backup-dir "/." path))
(define (directory? path)
(equal? (stat:type (stat path)) 'directory))
(define (empty-directory? dir)
(equal? (scandir dir) '("." "..")))
@ -133,7 +130,7 @@ (define (cleanup-symlinks old-tree)
(('dir . path)
(if (and
(file-exists? (get-target-path path))
(directory? (get-target-path path))
(file-is-directory? (get-target-path path))
(empty-directory? (get-target-path path)))
(begin
(format #t (G_ "Removing ~a...")
@ -179,7 +176,7 @@ (define (get-source-path path)
(('dir . path)
(let ((target-path (get-target-path path)))
(when (and (file-exists? target-path)
(not (directory? target-path)))
(not (file-is-directory? target-path)))
(backup-file path))
(if (file-exists? target-path)