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:
commit
592c59f1b3
4
Rakefile
4
Rakefile
@ -10,7 +10,7 @@ task :install => [:submodules] do
|
||||
puts "======================================================"
|
||||
puts
|
||||
|
||||
install_homebrew
|
||||
install_homebrew if RUBY_PLATFORM.downcase.include?("darwin")
|
||||
install_rvm_binstubs
|
||||
|
||||
# this has all the runcoms from this directory.
|
||||
@ -25,7 +25,7 @@ task :install => [:submodules] do
|
||||
install_prezto
|
||||
end
|
||||
|
||||
install_fonts
|
||||
install_fonts if RUBY_PLATFORM.downcase.include?("darwin")
|
||||
|
||||
success_msg("installed")
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user