home: symlink-manager: Add missing 'done' word in message.
* gnu/home/services/symlink-manager.scm (update-symlinks-script): Add missing 'done' word in message, keep code width below 80 column. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
9e86e58d6f
commit
d05954047f
1 changed files with 13 additions and 11 deletions
|
@ -107,7 +107,8 @@
|
||||||
(format #t (G_ "Removing ~a...") file)
|
(format #t (G_ "Removing ~a...") file)
|
||||||
(delete-file file)
|
(delete-file file)
|
||||||
(display (G_ " done\n")))
|
(display (G_ " done\n")))
|
||||||
(format #t
|
(format
|
||||||
|
#t
|
||||||
(G_ "Skipping ~a (not a symlink to store)... done\n")
|
(G_ "Skipping ~a (not a symlink to store)... done\n")
|
||||||
file)))))
|
file)))))
|
||||||
|
|
||||||
|
@ -121,10 +122,11 @@
|
||||||
(format #t (G_ "Removed ~a.\n") directory))
|
(format #t (G_ "Removed ~a.\n") directory))
|
||||||
(lambda args
|
(lambda args
|
||||||
(let ((errno (system-error-errno args)))
|
(let ((errno (system-error-errno args)))
|
||||||
(cond ((= ENOTEMPTY errno)
|
(cond
|
||||||
|
((= ENOTEMPTY errno)
|
||||||
(format
|
(format
|
||||||
#t
|
#t
|
||||||
(G_ "Skipping ~a (not an empty directory)...\n")
|
(G_ "Skipping ~a (not an empty directory)... done\n")
|
||||||
directory))
|
directory))
|
||||||
((= ENOTDIR errno) #t)
|
((= ENOTDIR errno) #t)
|
||||||
(else
|
(else
|
||||||
|
|
Reference in a new issue