mirror of
https://github.com/atom/atom.git
synced 2026-01-25 06:48:28 -05:00
always call script/bootstrap before building
This commit is contained in:
6
Rakefile
6
Rakefile
@@ -12,8 +12,12 @@ task "create-project" do
|
||||
`python tools/gyp/gyp --depth=. atom.gyp`
|
||||
end
|
||||
|
||||
task :bootstrap do
|
||||
`script/bootstrap`
|
||||
end
|
||||
|
||||
desc "Build Atom via `xcodebuild`"
|
||||
task :build => "create-project" do
|
||||
task :build => ["create-project", "bootstrap"] do
|
||||
command = "xcodebuild -target Atom configuration=Release SYMROOT=#{BUILD_DIR}"
|
||||
puts command
|
||||
output = `#{command}`
|
||||
|
||||
Reference in New Issue
Block a user