Skip to content

Commit

Permalink
Merge pull request #62 from DeployGate/fix/update_message_std_err
Browse files Browse the repository at this point in the history
update message output to std error
  • Loading branch information
henteko committed Dec 17, 2015
2 parents 84bf3bc + 1d255cf commit 9c1fb95
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/deploygate/command_builder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,9 @@ def request_gem_update_checker
def show_update_message(latest_version)
gem_name = DeployGate.name.downcase
current_version = DeployGate::VERSION
puts ''
puts HighLine.color(I18n.t('command_builder.show_update_message', gem_name: gem_name, latest_version: latest_version, current_version: current_version), HighLine::YELLOW)
puts ''
STDERR.puts ''
STDERR.puts HighLine.color(I18n.t('command_builder.show_update_message', gem_name: gem_name, latest_version: latest_version, current_version: current_version), HighLine::YELLOW)
STDERR.puts ''
end
end
end

0 comments on commit 9c1fb95

Please sign in to comment.