Skip to content

Commit 9038cc7

Browse files
committed
Fix build
1 parent 95c7f44 commit 9038cc7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build.clj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@
4545
OPTS can be a map of
4646
:jvm-opts A vector of options ot pass to the JVM."
4747
[opts]
48-
(io/delete-file "eca")
48+
(when (.exists (io/file "eca"))
49+
(io/delete-file "eca"))
4950
(println "Generating bin...")
5051
(let [jvm-opts (concat (:jvm-opts opts []) ["-server"])]
5152
((requiring-resolve 'deps-bin.impl.bin/build-bin)

0 commit comments

Comments
 (0)