We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47e5efa commit 2e8bf6eCopy full SHA for 2e8bf6e
x-pack/plugin/ml/build.gradle
@@ -51,6 +51,14 @@ esplugin.bundleSpec.from {
51
configurations.nativeBundle.files.collect { zipTree(it) }
52
}
53
54
+// this is required due to https://github.com/nebula-plugins/gradle-ospackage-plugin/issues/472
55
+// those lib files should not be executable in the first place
56
+esplugin.bundleSpec.filesMatching("platform/**/lib/*") { details ->
57
+ details.permissions {
58
+ unix(0644)
59
+ }
60
+}
61
+
62
// We don't ship the individual nativeBundle licenses - instead
63
// they get combined into the top level NOTICES file we ship
64
esplugin.bundleSpec.exclude 'platform/licenses/**'
0 commit comments