vlsi commented on code in PR #6328:
URL: https://github.com/apache/jmeter/pull/6328#discussion_r1705267331


##########
src/dist/build.gradle.kts:
##########
@@ -132,12 +132,16 @@ val populateLibs by tasks.registering {
         val bshclientProject = projects.src.bshclient.dependencyProject.path
         val jorphanProject = projects.src.jorphan.dependencyProject.path
         listOf(libs, libsExt, binLibs).forEach {
-            it.fileMode = "644".toInt(8)
-            it.dirMode = "755".toInt(8)
+            it.filePermissions {
+                unix("rw-r--r--")
+            }
+            it.dirPermissions {
+                unix("rwxr-xr-x")
+            }
         }
         for (dep in deps) {
             val compId = dep.id.componentIdentifier
-            if (compId !is ProjectComponentIdentifier || 
!compId.build.isCurrentBuild) {

Review Comment:
   Interestingly, `isCurrentBuild` was always returning `true`, so I just 
removed the deprecated `isCurrentBuild` access for now.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@jmeter.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to