[bundler/bundler] Remove unnecessary condition

The builtin thor's color shell already checks this before printing, and
if not a tty, prints just the string without added color codes.

https://github.com/bundler/bundler/commit/4f62611c87
This commit is contained in:
David Rodríguez 2019-05-24 20:27:09 +02:00 коммит произвёл Hiroshi SHIBATA
Родитель 4c2255fd5c
Коммит b95756c7a9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: F9CF13417264FAC2
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -10,7 +10,7 @@ module Bundler
attr_writer :shell
def initialize(options = {})
if options["no-color"] || !$stdout.tty?
if options["no-color"]
Thor::Base.shell = Thor::Shell::Basic
end
@shell = Thor::Base.shell.new