From d2b202c43d332f25d776cc9d9131eba1d9986e7c Mon Sep 17 00:00:00 2001 From: Ali Karagoz Date: Thu, 27 Dec 2012 00:38:53 +0100 Subject: [PATCH] Fixed issue where the ASK environnement variable.. was not taken into account when doing a ASK=true rake install --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 058d266..9bc4411 100644 --- a/Rakefile +++ b/Rakefile @@ -129,7 +129,7 @@ def install_prezto end def want_to_install? (section) - if ENV["ask"]=="true" + if ENV["ASK"]=="true" puts "Would you like to install configuration files for: #{section}? [y]es, [n]o" STDIN.gets.chomp == 'y' else