-
-
Save zr0n/adb7cf1ec0175fcb3fd83cfff06de766 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
| echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.zprofile | |
| eval "$(/opt/homebrew/bin/brew shellenv)" | |
| # 1. Fazer backup dos binários originais do Unreal | |
| cd "/Users/Shared/Epic Games/UE_5.7/Engine/Extras/ThirdPartyNotUE/libimobiledevice/Mac/" | |
| sudo mkdir backup | |
| sudo mv idevice_id backup/ | |
| sudo mv ideviceinstaller backup/ 2>/dev/null | |
| # 2. Criar links simbólicos para os binários do Homebrew | |
| sudo ln -s /opt/homebrew/bin/idevice_id idevice_id | |
| sudo ln -s /opt/homebrew/bin/ideviceinstaller ideviceinstaller 2>/dev/null | |
| # 3. Verificar se funcionou | |
| ./idevice_id --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment