From 62129d9a2fd517e2aa02df41c755c23e109564a8 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Mon, 26 May 2014 20:09:13 -0400 Subject: [PATCH] Output Jekyll output if ENV['DEBUG'] exists --- features/step_definitions/jekyll_steps.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/step_definitions/jekyll_steps.rb b/features/step_definitions/jekyll_steps.rb index 1a4ec029..b0cb4c87 100644 --- a/features/step_definitions/jekyll_steps.rb +++ b/features/step_definitions/jekyll_steps.rb @@ -141,7 +141,7 @@ end When /^I run jekyll(.*)$/ do |args| status = run_jekyll(args) - if args.include?("--verbose") + if args.include?("--verbose") || ENV['DEBUG'] puts jekyll_run_output end end