File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 21
21
(status/line :detail " Building cache" )
22
22
(when (cache-exists? )
23
23
(delete-cache ))
24
- (let [clj-cp (-> (shell/command {:out :string }
25
- " clojure -A:test:lint-cache -Spath" )
24
+ (let [clj-cp (-> (shell/command {:out :string }
25
+ " clojure -A:test:lint-cache -Spath" )
26
26
:out string/trim)
27
27
bb-cp (bbcp/get-classpath )]
28
28
(shell/command " clojure -M:clj-kondo --dependencies --copy-configs --lint" clj-cp bb-cp)))
48
48
(check-cache opts)
49
49
(status/line :head " clj-kondo: linting" )
50
50
(let [{:keys [exit]}
51
- (shell/command {:continue true }
52
- " clojure -M:clj-kondo --lint src test script deps.edn" )]
51
+ (shell/command {:continue true }
52
+ " clojure -M:clj-kondo --lint src test script deps.edn build.clj " )]
53
53
(cond
54
54
(= 2 exit) (status/die exit " clj-kondo found one or more lint errors" )
55
55
(= 3 exit) (status/die exit " clj-kondo found one or more lint warnings" )
You can’t perform that action at this time.
0 commit comments