Skip to content

Commit 14bdd04

Browse files
committed
Problem: clean only deletes libczmq jni library
Solution: Instead delete all build or copied *.so files in the root dir
1 parent 5f15384 commit 14bdd04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zproject_java.gsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ bintray {
269269

270270
clean.doFirst {
271271
delete "${rootDir}/CMakeCache.txt"
272-
delete "${rootDir}/libczmqjni.so"
272+
delete fileTree("${rootDir}") { include "*.so" }
273273
}
274274
.
275275
.output "$(topdir)/README.md"

0 commit comments

Comments
 (0)