From d92564673a9caf6863487dec53397f0a14bb62b3 Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Tue, 11 Sep 2012 11:08:38 -0700 Subject: [PATCH] Kill Xcode hard. This is a bad idea, but for now we need to make sure Xcode is REALLY killed. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index c0dc051e9..593e3854a 100644 --- a/Rakefile +++ b/Rakefile @@ -9,7 +9,7 @@ desc "Create xcode project from gpy file" task "create-project" do `rm -rf atom.xcodeproj` `python tools/gyp/gyp --depth=. atom.gyp` - `killall -c Xcode 2> /dev/null` + `killall -c Xcode -9` `open atom.xcodeproj` # In order for the xcodebuild to know about the schemes, the project needs to have been opened once. This is xcode bullshit and is a bug on Apple's end (No radar has been file because I have no faith in radar's) sleep 0 while `xcodebuild -list` =~ /This project contains no schemes./ # Give xcode some time to open end