We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df891c2 commit 9612ef4Copy full SHA for 9612ef4
ci/osx-package.deploy.sh
@@ -9,13 +9,21 @@ cd "$SRC_PATH/install/"
9
10
# Codesign
11
sign_app() {
12
+ local entitlements=${1}
13
+ local folder=${2}
14
+
15
+ find "$folder" -name '*.dylib' \
16
+ -exec \
17
+ codesign --force --timestamp --sign "ossia.io" {} \
18
+ \;
19
20
codesign \
- --entitlements "$1" \
21
+ --entitlements "$entitlements" \
22
--force \
23
--timestamp \
24
--options=runtime \
25
--sign "ossia.io" \
- "$2"
26
+ "$folder"
27
}
28
29
echo " === code signing === "
@@ -31,7 +39,6 @@ else
31
39
fi
32
40
33
41
34
-
35
42
echo "... vstpuppet "
36
43
sign_app "$SRC_PATH/src/vstpuppet/entitlements.plist" "ossia score.app/Contents/MacOS/ossia-score-vstpuppet.app"
37
44
0 commit comments