Skip to content

Commit 9dc43f5

Browse files
committed
always print checked n files
1 parent 9454bc1 commit 9dc43f5

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

lisp/core/analyze.el

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -126,11 +126,11 @@ Argument LEVEL and MSG are data from the debug log signal."
126126
(buffer-string)))
127127
;; XXX: When printing the result, no color allow.
128128
(eask--with-no-color
129-
(mapc #'eask-stdout (reverse eask-analyze--log))))
130-
(t
131-
(eask-info "(Checked %s file%s)"
132-
(length checked-files)
133-
(eask--sinr checked-files "" "s"))))
129+
(mapc #'eask-stdout (reverse eask-analyze--log)))))
130+
131+
(eask-info "(Checked %s file%s)"
132+
(length checked-files)
133+
(eask--sinr checked-files "" "s"))
134134

135135
;; Output file
136136
(when (and content (eask-output))

test/jest/__snapshots__/analyze.test.js.snap

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
exports[`analyze in ./analyze/dsl matches snapshot 1`] = `
44
{
55
"stderr": "
6+
7+
(Checked 1 file)
68
",
79
"stdout": "~/Eask:9:18 Error: ✗ Multiple definition of \`package'
810
~/Eask:12:55 Error: ✗ Multiple definition of \`website-url'

0 commit comments

Comments
 (0)