From 87978e79f43278366d1ee002e6bc3c5046f473eb Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Mon, 4 Jan 2016 12:36:04 -0800 Subject: [PATCH] features/step_definitions: use $stderr instead of STDERR Fixes https://github.com/jekyll/jekyll/commit/c273d91df13227f04908198ff91df01cf7c2d284#commitcomment-15251676 --- features/step_definitions/jekyll_steps.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/features/step_definitions/jekyll_steps.rb b/features/step_definitions/jekyll_steps.rb index b38397fb..c9ae0567 100644 --- a/features/step_definitions/jekyll_steps.rb +++ b/features/step_definitions/jekyll_steps.rb @@ -150,14 +150,14 @@ end When /^I run jekyll(.*)$/ do |args| status = run_jekyll(args) if args.include?("--verbose") || ENV['DEBUG'] - STDERR.puts "\n#{jekyll_run_output}\n" + $stderr.puts "\n#{jekyll_run_output}\n" end end When /^I run bundle(.*)$/ do |args| status = run_bundle(args) if args.include?("--verbose") || ENV['DEBUG'] - STDERR.puts "\n#{jekyll_run_output}\n" + $stderr.puts "\n#{jekyll_run_output}\n" end end