From 7f2b1731308383770b6469c657bf17eb4c4a2cbb Mon Sep 17 00:00:00 2001 From: William Vu Date: Thu, 12 Jun 2014 13:46:10 -0500 Subject: [PATCH] Fix misspelled constant in msftidy --- tools/msftidy.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/msftidy.rb b/tools/msftidy.rb index 4663f2a533..70563100c5 100755 --- a/tools/msftidy.rb +++ b/tools/msftidy.rb @@ -11,7 +11,7 @@ require 'find' require 'time' CHECK_OLD_RUBIES = !!ENV['MSF_CHECK_OLD_RUBIES'] -SUPRESS_INFO_MESSAGES = !!ENV['MSF_SUPPRESS_INFO_MESSAGES'] +SUPPRESS_INFO_MESSAGES = !!ENV['MSF_SUPPRESS_INFO_MESSAGES'] if CHECK_OLD_RUBIES require 'rvm' @@ -92,7 +92,7 @@ class Msftidy # Display an info message. Info messages do not alter the exit status. # def info(txt, line=0) - return if SUPRESS_INFO_MESSAGES + return if SUPPRESS_INFO_MESSAGES line_msg = (line>0) ? ":#{line}" : '' puts "#{@full_filepath}#{line_msg} - [#{'INFO'.cyan}] #{cleanup_text(txt)}" end