We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d32974 commit db36d6dCopy full SHA for db36d6d
pkgbuild/scripts/postinstall
@@ -6,6 +6,10 @@ VPN_MARKER_FILE="/tmp/coder_vpn_was_running"
6
# Before this script, or the user opens the app, make sure
7
# Gatekeeper has ingested the notarization ticket.
8
spctl -avvv "/Applications/Coder Desktop.app"
9
+# spctl can't assess non-apps, so this will always return a non-zero exit code,
10
+# but the error message implies at minimum the signature of the extension was
11
+# checked.
12
+spctl -avvv "/Applications/Coder Desktop.app/Contents/Library/SystemExtensions/com.coder.Coder-Desktop.VPN.systemextension" || true
13
14
# Restart Coder Desktop if it was running before
15
if [ -f "$RUNNING_MARKER_FILE" ]; then
0 commit comments