Skip to content

Commit fb1fea0

Browse files
ignore springloaded javadoc jar file (if it exists) when generating wrapper
1 parent 954f27a commit fb1fea0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/Wrapper.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ target ('default': "Installs the Grails wrapper") {
5858
springloadedFiles << it
5959
}
6060

61-
springloadedFiles = springloadedFiles.findAll { !it.name.contains('sources') && !it.name.contains('sources')}
61+
springloadedFiles = springloadedFiles.findAll { !it.name.contains('sources') && !it.name.contains('javadoc')}
6262

6363
if (springloadedFiles.size() != 1) {
6464
if (springloadedFiles.size() == 0) {

0 commit comments

Comments
 (0)