[java-shib-profile] branch main updated: JSPROF-12 - Exec resources should be set to mode 755 for consistency

Codeberg noreply at shibboleth.net
Tue Dec 16 13:01:31 UTC 2025


This is an automated email from the git hooks/post-receive script.

codeberg pushed a commit to branch main
in repository java-shib-profile.

View the commit online:
https://codeberg.org/Shibboleth/java-shib-profile/commit/2a0bff56b039407ae99a3ee39be3dbb4f04fc389

The following commit(s) were added to refs/heads/main by this push:
     new 2a0bff5  JSPROF-12 - Exec resources should be set to mode 755 for consistency
2a0bff5 is described below

commit 2a0bff56b039407ae99a3ee39be3dbb4f04fc389
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Dec 16 06:01:13 2025 -0700

    JSPROF-12 - Exec resources should be set to mode 755 for consistency
    
    https://shibboleth.atlassian.net/browse/JSPROF-12
---
 .../src/main/java/net/shibboleth/profile/module/AbstractModule.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/shib-profile-api/src/main/java/net/shibboleth/profile/module/AbstractModule.java b/shib-profile-api/src/main/java/net/shibboleth/profile/module/AbstractModule.java
index 9791ca4..0160430 100644
--- a/shib-profile-api/src/main/java/net/shibboleth/profile/module/AbstractModule.java
+++ b/shib-profile-api/src/main/java/net/shibboleth/profile/module/AbstractModule.java
@@ -550,7 +550,7 @@ public abstract class AbstractModule implements Module {
                 }
                 Files.copy(srcStream, destPath, StandardCopyOption.REPLACE_EXISTING);
                 if (isExecutable()) {
-                    destPath.toFile().setExecutable(true);
+                    destPath.toFile().setExecutable(true, false);
                 }
                 log.debug("Module {} created {}", getId(), destPath);
                 return result;

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list