Skip to content

Instantly share code, notes, and snippets.

View MiklinMA's full-sized avatar
🎯
Focusing

Mike Miklin MiklinMA

🎯
Focusing
View GitHub Profile
@MiklinMA
MiklinMA / Xcode reset.scpt
Last active March 7, 2024 07:36
Xcode reset. An easy way to clear DerivedData, Xcode caches and module cache.
tell application "Xcode"
activate
set targetProject to active workspace document
repeat 60 times
if loaded of targetProject is true then
exit repeat
end if
delay 0.5
end repeat