Skip to content

Commit

Permalink
prep for v0.3.0 fix #4
Browse files Browse the repository at this point in the history
  • Loading branch information
seancorfield committed Oct 29, 2023
1 parent 5a4518d commit 9f6391a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changes

v0.3.0 -- 2023-10-28
* Fix [#4](https://github.com/seancorfield/polylith-external-test-runner/issues/4) by guarding `str/split` with `when java-opts`.

v0.2.0 f208856 -- 2023-02-23
* Fix [#3](https://github.com/seancorfield/polylith-external-test-runner/issues/3) by switching to `tools.deps` and updating dependencies.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
(keyword (subs java-opts 1)))
java-opts (if opt-key
(into [] (remove nil?) (chase-opts-key (get-project-aliases) opt-key))
(str/split java-opts #" "))]
(when java-opts (str/split java-opts #" ")))]

(reify test-runner-contract/TestRunner
(test-runner-name [_] "Polylith org.corfield.external-test-runner")
Expand Down

0 comments on commit 9f6391a

Please sign in to comment.