Commit cacbd0ab authored by Swizzlr's avatar Swizzlr

[BUILD] Update Rakefile with procedures to check presence of bzr and hg.

parent 20056d29
......@@ -370,6 +370,16 @@ 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
puts "done."
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