Commit 12441e6c authored by Fabio Pelosin's avatar Fabio Pelosin

Merge pull request #1768 from swizzlr/bootstrap

[BUILD] Update Rakefile with procedures to check presence of bzr and hg.
parents 9905fd87 480bdc02
......@@ -370,6 +370,15 @@ task :bootstrap, :use_bundle_dir? do |t, args|
else
execute_command "env XCODEPROJ_BUILD=1 bundle install"
end
puts "Checking for hg and bzr..."
if `which hg`.strip.empty?
puts "Please install Mercurial: `brew install hg`"
end
if `which bzr`.strip.empty?
puts "Please install Bazaar: `brew install bzr`"
end
end
#-----------------------------------------------------------------------------#
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment