Skip to content

Commit

Permalink
Add workaround for breaking change in bb
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobobryant committed Jun 9, 2023
1 parent df935d8 commit d0a3248
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion new-project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -116,4 +116,6 @@
(println)
(System/exit 0)))

(apply -main *command-line-args*)
;; Workaround since *command-line-args* now includes options passed to bb.
(apply -main (cond->> *command-line-args*
(= "-e" (first *command-line-args*)) (drop 2)))

0 comments on commit d0a3248

Please sign in to comment.