Last active
February 28, 2024 01:38
-
-
Save patrickeddy/7532ab4358ac340c4f5df8c9fe1a6b29 to your computer and use it in GitHub Desktop.
npx expo run:ios build failure fix MacOS
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
# MacOS wasn't able to find xcode SDK tools on my machine | |
# I had to manually set the SDKROOT | |
# using bash | |
echo "export SDKROOT=$(xcrun --show-sdk-path)" >> ~/.bashrc | |
# using zsh | |
echo "export SDKROOT=$(xcrun --show-sdk-path)" >> ~/.zshrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment