Skip to content

Commit 3ecf5af

Browse files
committed
fix arg order for cljs.build.api/mark-cljs-ns-for-recompile!
1 parent d435b43 commit 3ecf5af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/clojure/cljs/build/api.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"Backdates a cljs target file so that it the cljs compiler will recompile it."
4343
([ns-sym] (mark-cljs-ns-for-recompile! ns-sym nil))
4444
([ns-sym output-dir]
45-
(let [s (target-file-for-cljs-ns output-dir ns-sym)]
45+
(let [s (target-file-for-cljs-ns ns-sym output-dir)]
4646
(when (.exists s)
4747
(.setLastModified s 5000)))))
4848

0 commit comments

Comments
 (0)