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:
authorOlivier Goffart <ogoffart@woboq.com>2020-02-25 13:45:27 +0300
committerOlivier Goffart <ogoffart@woboq.com>2020-02-25 13:45:27 +0300
commitdc1070d02d63f98a59425d02340ae8da6c9a9928 (patch)
tree7a8625591f3e71d0e62ea77ccc47061013a1abe6 /admin
parenta86b9677ca24ba67d7eed250c195b2dad3f8c9f9 (diff)
parentaab8ee3e779adb60eebe4772995dbe7431f7f80e (diff)
Merge remote-tracking branch 'origin/2.6'
Conflicts: CHANGELOG.md VERSION.cmake src/gui/MacOSXBundleInfo.plist src/gui/folderstatusmodel.h src/gui/settingsdialog.cpp
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 $?