mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-05 12:37:33 -05:00
fix(cli): suppress 'checked out X' when X = nil
This commit is contained in:
@ -319,7 +319,8 @@ list remains lean."
|
|||||||
(print-group!
|
(print-group!
|
||||||
(if-let (pin (cdr (assoc package pinned)))
|
(if-let (pin (cdr (assoc package pinned)))
|
||||||
(print! (item "Pinned to %s") pin)
|
(print! (item "Pinned to %s") pin)
|
||||||
(print! (item "Checked out %s") commit)))
|
(when commit
|
||||||
|
(print! (item "Checked out %s") commit))))
|
||||||
;; HACK: Line encoding issues can plague
|
;; HACK: Line encoding issues can plague
|
||||||
;; repos with dirty worktree prompts
|
;; repos with dirty worktree prompts
|
||||||
;; when updating packages or "Local
|
;; when updating packages or "Local
|
||||||
|
Reference in New Issue
Block a user