Merge pull request #176 from brotbert/linux-no-homebrew-and-font-install

don't try to install homebrew and fonts on linux-based systems
This commit is contained in:
Yan Pritzker 2012-10-04 11:59:07 -07:00
commit 592c59f1b3

View File

@ -10,7 +10,7 @@ task :install => [:submodules] do
puts "======================================================" puts "======================================================"
puts puts
install_homebrew install_homebrew if RUBY_PLATFORM.downcase.include?("darwin")
install_rvm_binstubs install_rvm_binstubs
# this has all the runcoms from this directory. # this has all the runcoms from this directory.
@ -25,7 +25,7 @@ task :install => [:submodules] do
install_prezto install_prezto
end end
install_fonts install_fonts if RUBY_PLATFORM.downcase.include?("darwin")
success_msg("installed") success_msg("installed")
end end