Skip to content

Commit 2abd3d7

Browse files
committed
fix bug caused by partial refactoring
1 parent 7b2f448 commit 2abd3d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

boot/core/src/boot/core.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,8 @@
205205
(defn mktgtdir!
206206
"Create a tempdir managed by boot into which tasks can emit artifacts. See
207207
https://github.com/tailrecursion/boot#boot-managed-directories for more info."
208-
[key & [name]]
209-
(util/with-let [f (mktmpdir! key name)]
208+
[key]
209+
(util/with-let [f (mktmpdir! key)]
210210
(swap! tgtdirs conj f)
211211
(set-env! :src-paths #{(.getPath f)})
212212
(add-sync! (get-env :tgt-path) [(.getPath f)])))

0 commit comments

Comments
 (0)