We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aff29de commit 6c1696fCopy full SHA for 6c1696f
build/build.xml
@@ -284,10 +284,15 @@
284
</exec>
285
286
<!-- Sign app -->
287
- <exec executable="codesign" dir="macosx/work" failonerror="true">
+ <exec executable="codesign" dir="macosx/work">
288
<arg line="--keychain "${macosx-sign-keychain}" --force -s "${macosx-sign-id}" -v Arduino.app/" />
289
290
291
+ <!-- Check for successful signing -->
292
+ <exec executable="codesign" dir="macosx/work" failonerror="true">
293
+ <arg line="-vvvv Arduino.app/" />
294
+ </exec>
295
+
296
<delete file="macosx/arduino-${version}-${platform}.zip" />
297
298
<!-- Create signed zip file -->
0 commit comments