Skip to content

Commit fc7a108

Browse files
committed
fix for GRAILS-5395 "Missing File.pathSeparator in _GrailsClasspath.groovy script"
changed
1 parent e379cc0 commit fc7a108

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/_GrailsClasspath.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ void setClasspath() {
212212
//rootLoader?.addURL(dir.URL)
213213
}
214214
cpath << classesDirPath << File.pathSeparator
215-
cpath << "${basedir}/web-app/WEB-INF"
215+
cpath << "${basedir}/web-app/WEB-INF" << File.pathSeparator
216216
for (jar in jarFiles) {
217217
cpath << jar.file.absolutePath << File.pathSeparator
218218
}

0 commit comments

Comments
 (0)