mirror of
https://github.com/lwouis/alt-tab-macos.git
synced 2026-05-24 11:20:36 +00:00
11 lines
274 B
Bash
Executable File
11 lines
274 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -exu
|
|
|
|
certificateFile="codesign"
|
|
|
|
# Recreate the certificate from the secure environment variable
|
|
echo "$APPLE_P12_CERTIFICATE" | base64 --decode > $certificateFile.p12
|
|
|
|
scripts/codesign/import_certificate_into_new_keychain.sh "$certificateFile" ""
|