Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/admin
diff options
context:
space:
mode:
authorDominik Schmidt <dev@dominik-schmidt.de>2020-02-12 12:08:27 +0300
committerHannah von Reth <vonreth@kde.org>2020-02-24 13:01:40 +0300
commit3c7bc6886f038c3bf35c96ea0e1c3a987f950c23 (patch)
treee4238a13cc3ecd134d60162221a1c1a0319a8107 /admin
parentd4f834bdb99c552d133d8ab72e3b3cd8600ea999 (diff)
Remove sign_app.sh
Diffstat (limited to 'admin')
-rwxr-xr-xadmin/osx/sign_app.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/admin/osx/sign_app.sh b/admin/osx/sign_app.sh
deleted file mode 100755
index e909f66d7..000000000
--- a/admin/osx/sign_app.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh -xe
-
-[ "$#" -lt 2 ] && echo "Usage: sign_app.sh <app> <identity> <team_identifier>" && exit
-
-src_app="$1"
-identity="$2"
-team_identifier="$3"
-
-codesign -s "$identity" --force --preserve-metadata=entitlements --verbose=4 --options runtime --deep "$src_app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app"
-codesign -s "$identity" --force --preserve-metadata=entitlements --verbose=4 --options runtime --deep "$src_app"
-
-# Verify the signature
-codesign -dv $src_app
-codesign --verify -v --strict $src_app
-spctl -a -t exec -vv $src_app
-
-# Validate that the key used for signing the binary matches the expected TeamIdentifier
-# needed to pass the SocketApi through the sandbox
-codesign -dv $src_app 2>&1 | grep "TeamIdentifier=$team_identifier"
-exit $?