OS X signing fixed

This commit is contained in:
John Preston 2014-08-15 17:31:03 +04:00
parent be939201fd
commit 0a69ed37da
2 changed files with 6 additions and 1 deletions

View File

@ -16,6 +16,11 @@ if [ ! -d "./../Mac/Release/Telegram.app" ]; then
exit 1
fi
if [ ! -d "./../Mac/Release/Telegram.app/Contents/_CodeSignature" ]; then
echo "Telegram signature not found!"
exit 1
fi
if [ ! -f "./../Mac/Release/Telegram.app/Contents/Resources/Icon.icns" ]; then
echo "Icon.icns not found in Resources!"
exit 1

View File

@ -1 +1 @@
codesign --force --sign "Developer ID Application: John Preston" ./../Mac/Release/Telegram.app
codesign --force --deep --sign "Developer ID Application: John Preston" ./../Mac/Release/Telegram.app