mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
- Compresses AltPlugin.mailbundle into .zip to prevent it from being signed when exporting archive - Signs Sparkle framework with run script
14 lines
365 B
Bash
14 lines
365 B
Bash
#!/bin/sh
|
|
|
|
# InstallAltPlugin.sh
|
|
# AltStore
|
|
#
|
|
# Created by Riley Testut on 11/16/19.
|
|
# Copyright © 2019 Riley Testut. All rights reserved.
|
|
|
|
rm -f AltPlugin.mailbundle
|
|
unzip AltPlugin.mailbundle.zip 1>/dev/null
|
|
mkdir -p /Library/Mail/Bundles
|
|
cp -r AltPlugin.mailbundle /Library/Mail/Bundles
|
|
defaults write "/Library/Preferences/com.apple.mail" EnableBundles 1
|