Skip to content

Commit

Permalink
fix error message for jdkpackager when antTaskLib is missing (#1222)
Browse files Browse the repository at this point in the history
- grammar: 'find' -> 'found'
- settings key requires `Option[File]` not `Option[String]`
  • Loading branch information
Sciss authored and muuki88 committed May 9, 2019
1 parent 1dcf292 commit 35dff15
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ object JDKPackagerAntHelper {
if (antTaskLib.isEmpty) {
sys.error(
"Please set key `antPackagerTasks in JDKPackager` to `ant-javafx.jar` path, " +
"which should be find in the `lib` directory of the Oracle JDK 8 installation. For example (Windows):\n" +
"""(antPackagerTasks in JDKPackager) := Some("C:\\Program Files\\Java\\jdk1.8.0_45\\lib\\ant-javafx.jar")"""
"which should be found in the `lib` directory of the Oracle JDK 8 installation. For example (Windows):\n" +
"""(antPackagerTasks in JDKPackager) := Some(file("C:\\Program Files\\Java\\jdk1.8.0_45\\lib\\ant-javafx.jar"))"""
)
}

Expand Down

0 comments on commit 35dff15

Please sign in to comment.