Spelling fix.

This commit is contained in:
Clinton Alexander 2017-01-04 16:58:32 +00:00
parent 0fb77f9fa2
commit 3151586d54

View File

@ -106,7 +106,7 @@ task integrationTest(type: Test, dependsOn: []) {
tasks.withType(CreateStartScripts).each { task ->
task.doLast {
String text = task.windowsScript.text
// Replaces the per file classpath (which are all jars in "lib" with a wildcard on lib
// Replaces the per file classpath (which are all jars in "lib") with a wildcard on lib
text = text.replaceFirst(/(set CLASSPATH=%APP_HOME%\\lib\\).*/, { "${it[1]}*" })
task.windowsScript.write text
}