Skip to content

Instantly share code, notes, and snippets.

@patrickeddy
patrickeddy / fix-sdkroot-macos.sh
Last active February 28, 2024 01:38
npx expo run:ios build failure fix MacOS
# 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