1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-26 07:13:24 +03:00

Fix signing

This commit is contained in:
Tae Won Ha 2020-11-14 17:18:31 +01:00
parent 44e7986655
commit ff9486bf26

View File

@ -31,12 +31,12 @@ if [[ ${code_sign} == true ]] ; then
xcodebuild -configuration Release -derivedDataPath ./build -workspace VimR.xcworkspace -scheme VimR clean build xcodebuild -configuration Release -derivedDataPath ./build -workspace VimR.xcworkspace -scheme VimR clean build
pushd ${build_path}/Build/Products/Release > /dev/null pushd ${build_path}/Build/Products/Release > /dev/null
codesign --force -s "${identity}" --deep --timestamp --options=runtime VimR.app codesign --verbose --force -s "${identity}" --deep --timestamp --options=runtime VimR.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app
codesign --force -s "${identity}" --timestamp --options=runtime --entitlements="${entitlements_path}" \ 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 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 --verbose --force -s "${identity}" --deep --timestamp --options=runtime VimR.app
codesign --force -s "${identity}" --deep --timestamp --options=runtime VimR.app/Contents/Frameworks/Sparkle.framework/Versions/A
popd > /dev/null popd > /dev/null
else else
xcodebuild -configuration Release -scheme VimR -workspace VimR.xcworkspace -derivedDataPath ${build_path} clean build xcodebuild -configuration Release -scheme VimR -workspace VimR.xcworkspace -derivedDataPath ${build_path} clean build