From b283c018f4e0be5687a15c530f3767587aad7da3 Mon Sep 17 00:00:00 2001 From: Michael Saffitz Date: Mon, 23 Apr 2012 14:07:54 -0700 Subject: [PATCH] Fix for typo in zsh_themes install --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index cbf228e..91b46f8 100644 --- a/Rakefile +++ b/Rakefile @@ -55,7 +55,7 @@ task :zsh_themes do if File.exist?("#{ENV['HOME']}/.oh-my-zsh/modules/prompt/functions") puts "Detected oh-my-zsh @sorin-ionescu version." run %{ ln -nfs #{ENV["PWD"]}/oh-my-zsh/modules/prompt/functions/* $HOME/.oh-my-zsh/modules/prompt/functions/ } if want_to_install?('zsh themes') - elsif File.exist("#{ENV['HOME']}/.oh-my-zsh") + elsif File.exist?("#{ENV['HOME']}/.oh-my-zsh") puts "Detected oh-my-zsh @robbyrussell version." run %{ ln -nfs #{ENV["PWD"]}/oh-my-zsh/themes/* $HOME/.oh-my-zsh/themes/ } if want_to_install?('zsh themes') end