@@ -17,9 +17,6 @@ cp installer/Info.plist "$OS_PATH"
17
17
sed -e " s/VERSION/$VERSION /g" " $OS_PATH /Info.plist" > " $OS_PATH /Info.plist_version"
18
18
mv " $OS_PATH /Info.plist_version" " $OS_PATH /Info.plist"
19
19
20
- echo " Copying the entitlements file"
21
- cp " installer/openshot.entitlements" " build"
22
-
23
20
if [ ! -d " $OS_PATH /MacOS/lib" ]; then
24
21
echo " Creating lib folder"
25
22
mkdir " $OS_PATH /MacOS/lib"
@@ -58,10 +55,10 @@ if [ -d "$OS_PATH/MacOS/python3.6" ]; then
58
55
fi
59
56
60
57
echo " Loop through bundled files and sign all binary files"
61
- find " build" \( -iname ' *.dylib' -o -iname ' *.so' \) -exec codesign -s " OpenShot Studios, LLC" --timestamp=http://timestamp.apple.com/ts01 --entitlements " openshot.entitlements" --force " {}" \;
58
+ find " build" \( -iname ' *.dylib' -o -iname ' *.so' \) -exec codesign -s " OpenShot Studios, LLC" --timestamp=http://timestamp.apple.com/ts01 --entitlements " installer/ openshot.entitlements" --force " {}" \;
62
59
63
60
echo " Code Sign App Bundle (deep)"
64
- codesign -s " OpenShot Studios, LLC" --force --deep --entitlements " openshot.entitlements" --options runtime --timestamp=http://timestamp.apple.com/ts01 " build/$OS_APP_NAME "
61
+ codesign -s " OpenShot Studios, LLC" --force --deep --entitlements " installer/ openshot.entitlements" --options runtime --timestamp=http://timestamp.apple.com/ts01 " build/$OS_APP_NAME "
65
62
66
63
echo " Verifying App Signing"
67
64
spctl -a -vv " build/$OS_APP_NAME "
@@ -70,7 +67,7 @@ echo "Building Custom DMG"
70
67
appdmg " installer/dmg-template.json" " build/$OS_DMG_NAME "
71
68
72
69
echo " Code Sign DMG"
73
- codesign -s " OpenShot Studios, LLC" --force --entitlements " openshot.entitlements" --timestamp=http://timestamp.apple.com/ts01 " build/$OS_DMG_NAME "
70
+ codesign -s " OpenShot Studios, LLC" --force --entitlements " installer/ openshot.entitlements" --timestamp=http://timestamp.apple.com/ts01 " build/$OS_DMG_NAME "
74
71
75
72
echo " Notarize DMG file (send to apple)"
76
73
# No errors uploading '/Users/jonathan/builds/7d5103a1/0/OpenShot/openshot-qt/build/test.zip'.
0 commit comments