chore: sync-music: capitalize comments
This commit is contained in:
parent
117325d1ef
commit
394224eadd
|
@ -79,6 +79,6 @@ Pushes status message about this action to QUEUE if given."))
|
||||||
(defmethod action-perform-describe ((a directory-action))
|
(defmethod action-perform-describe ((a directory-action))
|
||||||
(format nil "Ensuring `~A` exists..." (action-target a)))
|
(format nil "Ensuring `~A` exists..." (action-target a)))
|
||||||
|
|
||||||
;; NOTE: delete actions are equal to copy actions to the same target
|
;; NOTE: Delete actions are equal to copy actions to the same target
|
||||||
(defmethod fset:compare ((a1 action) (a2 action))
|
(defmethod fset:compare ((a1 action) (a2 action))
|
||||||
(fset:compare-slots a1 a2 #'action-target))
|
(fset:compare-slots a1 a2 #'action-target))
|
||||||
|
|
|
@ -91,7 +91,7 @@ total task count as arguments."
|
||||||
|
|
||||||
(defun clean-directory (target)
|
(defun clean-directory (target)
|
||||||
"Delete all empty folders and folders containing only empty folders in TARGET."
|
"Delete all empty folders and folders containing only empty folders in TARGET."
|
||||||
;; NOTE: want (every #'clean-directory ...) but without short-circuiting
|
;; NOTE: Want (every #'clean-directory ...) but without short-circuiting
|
||||||
(and (every #'identity
|
(and (every #'identity
|
||||||
(mapcar #'clean-directory (uiop:subdirectories target)))
|
(mapcar #'clean-directory (uiop:subdirectories target)))
|
||||||
(null (uiop:directory-files target))
|
(null (uiop:directory-files target))
|
||||||
|
|
Loading…
Reference in a new issue