File tree Expand file tree Collapse file tree 1 file changed +0
-26
lines changed Expand file tree Collapse file tree 1 file changed +0
-26
lines changed Original file line number Diff line number Diff line change @@ -138,32 +138,6 @@ subprojects {
138
138
options. addStringOption(" docencoding" , " utf-8" )
139
139
options. addStringOption(" encoding" , " utf-8" )
140
140
}
141
-
142
- // Sign outputs with Developer ID
143
- tasks. withType(AbstractLinkTask ) { task ->
144
- task. inputs. property " HasDeveloperId" , project. hasProperty(" developerID" )
145
-
146
- if (project. hasProperty(" developerID" )) {
147
- // Don't sign any executables because codesign complains
148
- // about relative rpath.
149
- if (! (task instanceof LinkExecutable )) {
150
- doLast {
151
- // Get path to binary.
152
- String path = task. getLinkedFile(). getAsFile(). get(). getAbsolutePath()
153
- exec {
154
- workingDir rootDir
155
- def args = [
156
- " sh" ,
157
- " -c" ,
158
- " codesign --force --strict --timestamp --options=runtime " +
159
- " --verbose -s ${ project.findProperty("developerID")} ${ path} "
160
- ]
161
- commandLine args
162
- }
163
- }
164
- }
165
- }
166
- }
167
141
}
168
142
169
143
ext. getCurrentArch = {
You can’t perform that action at this time.
0 commit comments