From ff9486bf26de72b9cd72c1c1d9a5219bc1ebf5b0 Mon Sep 17 00:00:00 2001 From: Tae Won Ha Date: Sat, 14 Nov 2020 17:18:31 +0100 Subject: [PATCH] Fix signing --- bin/build_vimr.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bin/build_vimr.sh b/bin/build_vimr.sh index 469600f5..4bce6b47 100755 --- a/bin/build_vimr.sh +++ b/bin/build_vimr.sh @@ -31,12 +31,12 @@ if [[ ${code_sign} == true ]] ; then xcodebuild -configuration Release -derivedDataPath ./build -workspace VimR.xcworkspace -scheme VimR clean build pushd ${build_path}/Build/Products/Release > /dev/null - codesign --force -s "${identity}" --deep --timestamp --options=runtime VimR.app - codesign --force -s "${identity}" --timestamp --options=runtime --entitlements="${entitlements_path}" \ + codesign --verbose --force -s "${identity}" --deep --timestamp --options=runtime VimR.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app + codesign --verbose --force -s "${identity}" --timestamp --options=runtime VimR.app/Contents/Frameworks/Sparkle.framework/Versions/A + codesign --verbose --force -s "${identity}" --timestamp --options=runtime --entitlements="${entitlements_path}" \ VimR.app/Contents/Resources/NvimView_NvimView.bundle/Contents/Resources/NvimServer - codesign --force -s "${identity}" --timestamp --options=runtime VimR.app/Contents/Frameworks/NvimView.framework/Versions/A - codesign --force -s "${identity}" --deep --timestamp --options=runtime VimR.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app - codesign --force -s "${identity}" --deep --timestamp --options=runtime VimR.app/Contents/Frameworks/Sparkle.framework/Versions/A + + codesign --verbose --force -s "${identity}" --deep --timestamp --options=runtime VimR.app popd > /dev/null else xcodebuild -configuration Release -scheme VimR -workspace VimR.xcworkspace -derivedDataPath ${build_path} clean build