Skip to content

Commit 12b5243

Browse files
committed
FAB-16493 Fixed gradle build on windows
Signed-off-by: Paritosh Ranjan <[email protected]> Change-Id: I8175cd7c1e2c08d48a3b5279c9806e82acf1dba7
1 parent 2f6be19 commit 12b5243

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
@@ -113,7 +113,7 @@ task licenseCheck {
113113
def missing = new LinkedList<File>()
114114
sourceSets.forEach {
115115
sourceSet ->
116-
sourceSet.allSource.findAll { !it.path.contains("build") && !it.path.contains("test/resources")}.each {
116+
sourceSet.allSource.findAll { !it.path.contains("build") && !(it.path.contains("test") && it.path.contains("resources"))}.each {
117117
file ->
118118
if (!file.name.contains("json")){
119119
BufferedReader r = new BufferedReader(new FileReader(file))

0 commit comments

Comments
 (0)