Heiko
08/26/2024, 5:52 PMfilesMatching("**/*.sh") { filePermissions { user { execute = true } } }
and
filePermissions { filesMatching("**/*.sh") { user { execute = true } } }
neither gives the expected result. First option results in an error The value for this property is final and cannot be changed any further. while the 2nd option makes all files executable, not just the *.sh filesVampire
08/26/2024, 8:36 PM--scan URL?Heiko
08/26/2024, 9:33 PMfilesMatching("**/*.sh") { permissions { user { execute = true } } }