Skip to content

Commit

Permalink
Ignore "useless use of == in void context" warning from specs.
Browse files Browse the repository at this point in the history
  • Loading branch information
jasoncodes committed May 12, 2011
1 parent 9be85aa commit c881990
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Commands/Validate and Save.tmCommand
Expand Up @@ -14,7 +14,7 @@ if compiler_ruby.length == 0
compiler_ruby = ENV['TM_RUBY'] || `which ruby`.strip
end
result = `#{compiler_ruby} -wc "$TM_FILEPATH" 2>&1`
result = `#{compiler_ruby} -wc "$TM_FILEPATH" 2>&1 | egrep -v -e 'useless use of == in void context'`
print result
TextMate.go_to :line => $1 if result =~ /:(\d+):/
</string>
Expand Down

0 comments on commit c881990

Please sign in to comment.