Skip to content

Instantly share code, notes, and snippets.

View MatthewPierson's full-sized avatar
🌸

matty MatthewPierson

🌸
View GitHub Profile
@MatthewPierson
MatthewPierson / fix.sh
Created February 29, 2020 21:45
Fix for irecovery errors with PyBoot
#!/bin/bash
echo "Downloading and building libimobiledevice" # Just want to make sure theres no libimobiledevice related issues when installing libirecovery
brew install --HEAD libimobiledevice # This is just getting the latest libimobiledevice and building it instead of the older version that brew usually gets
brew link --overwrite libimobiledevice
echo "Downloading and building libirecovery"
mkdir -p build && cd build