Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 614 Bytes

File metadata and controls

18 lines (12 loc) · 614 Bytes

Clean simulators

echo "Shutting down the simulator app"
osascript -e 'quit app "Simulator"'

echo "Making sure ALL simulators are shutdown"
xcrun simctl list | grep Booted | grep -e "[0-9A-F\-]\{36\}" -o | xargs xcrun simctl shutdown

echo "Erasing apps from all simulators and resetting back to clean state"
xcrun simctl erase all

echo "Killing com.apple.CoreSimulator.CoreSimulatorService"
killall -9 com.apple.CoreSimulator.CoreSimulatorService

fastlane/fastlane#6968 (comment)