use language-independent sid for windows users group permission

This commit is contained in:
doblon8 2025-10-21 09:35:18 +02:00 committed by GitHub
parent 092267339a
commit 31909b7a15
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -285,7 +285,8 @@ if(os.linux) {
tasks.register('addUserWritePermission', Exec) {
if(os.windows) {
commandLine 'icacls', "$buildDir\\image\\legal", '/grant', 'Users:(OI)(CI)F', '/T'
def usersGroup = '*S-1-5-32-545' // Windows "Users" group SID (language-independent)
commandLine 'icacls', "$buildDir\\image\\legal", '/grant', "${usersGroup}:(OI)(CI)F", '/T'
} else {
commandLine 'chmod', '-R', 'u+w', "$buildDir/image/legal"
}