Skip to content

Commit 4efdafe

Browse files
mbwhiteGerrit Code Review
authored andcommitted
Merge "FAB-16493 Fixed gradle build on windows"
2 parents 5520053 + 12b5243 commit 4efdafe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fabric-chaincode-shim/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ task licenseCheck {
119119
def missing = new LinkedList<File>()
120120
sourceSets.forEach {
121121
sourceSet ->
122-
sourceSet.allSource.findAll { !it.path.contains("build") && !it.path.contains("test/resources")}.each {
122+
sourceSet.allSource.findAll { !it.path.contains("build") && !(it.path.contains("test") && it.path.contains("resources"))}.each {
123123
file ->
124124
if (!file.name.contains("json")){
125125
BufferedReader r = new BufferedReader(new FileReader(file))

0 commit comments

Comments
 (0)