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

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Molkentin <danimo@owncloud.com>2015-04-16 17:33:36 +0300
committerDaniel Molkentin <danimo@owncloud.com>2015-04-16 17:35:09 +0300
commitc3dca7a288f08fecac0c46ebf053a2a443bb6418 (patch)
treee7c7ab8ba2a7efc10efce1572c93102818fbb952 /admin/osx/sign_app.sh
parent96ff0076c752e9366261575fb7516f32cbdb5ff3 (diff)
OS X: Actually Make the signing script fail on failure
Addresses #3114
Diffstat (limited to 'admin/osx/sign_app.sh')
-rwxr-xr-xadmin/osx/sign_app.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/osx/sign_app.sh b/admin/osx/sign_app.sh
index 2a0994f58..22f4dffd4 100755
--- a/admin/osx/sign_app.sh
+++ b/admin/osx/sign_app.sh
@@ -1,4 +1,4 @@
-#!/bin/sh -x
+#!/bin/sh -xe
[ "$#" -lt 2 ] && echo "Usage: sign_app.sh <app> <identity>" && exit
@@ -7,6 +7,6 @@ identity="$2"
codesign -s "$identity" --force --verbose=4 --deep "$src_app"
-# Just for our debug purposes:
+# Verify the signature
spctl -a -t exec -vv $src_app
codesign -dv $src_app