]> granicus.if.org Git - handbrake/commitdiff
MacGui: update sign script to sign the new xpc service.
authorDamiano Galassi <damiog@gmail.com>
Thu, 22 Aug 2019 06:33:44 +0000 (08:33 +0200)
committerDamiano Galassi <damiog@gmail.com>
Thu, 22 Aug 2019 06:33:44 +0000 (08:33 +0200)
macosx/hbsign

index 6a1ebd546352ea929e3695101671e71dba3dbead..5fe4696fd55bfd1699de4762e490a67743b77f2f 100755 (executable)
@@ -109,6 +109,7 @@ for TARGET in "${@}"; do
         done
 
         echo "  Signing XPC Services"
+        sign "${TARGET}"/Contents/XPCServices/HandBrakeXPCService.xpc fr.handbrake.HandBrake
         sign "${TARGET}"/Contents/XPCServices/org.sparkle-project.Downloader.xpc org.sparkle-project.Downloader
         sign "${TARGET}"/Contents/XPCServices/org.sparkle-project.InstallerConnection.xpc org.sparkle-project.InstallerConnection
         sign "${TARGET}"/Contents/XPCServices/org.sparkle-project.InstallerLauncher.xpc org.sparkle-project.InstallerLauncher
@@ -127,6 +128,7 @@ for TARGET in "${@}"; do
         codesign --verify -vv "${TARGET}"/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/Updater.app >>"${LOG}" 2>&1 || exit_with_error 1 "Validation failed. More info may be available in ${NAME}.log"
 
         echo "  Validating XPC Services"
+        codesign --verify -vv "${TARGET}"/Contents/XPCServices/HandBrakeXPCService.xpc >>"${LOG}" 2>&1 || exit_with_error 1 "Validation failed. More info may be available in ${NAME}.log"
         codesign --verify -vv "${TARGET}"/Contents/XPCServices/org.sparkle-project.Downloader.xpc >>"${LOG}" 2>&1 || exit_with_error 1 "Validation failed. More info may be available in ${NAME}.log"
         codesign --verify -vv "${TARGET}"/Contents/XPCServices/org.sparkle-project.InstallerConnection.xpc >>"${LOG}" 2>&1 || exit_with_error 1 "Validation failed. More info may be available in ${NAME}.log"
         codesign --verify -vv "${TARGET}"/Contents/XPCServices/org.sparkle-project.InstallerLauncher.xpc >>"${LOG}" 2>&1 || exit_with_error 1 "Validation failed. More info may be available in ${NAME}.log"