From 770f4df51e5f2f87c9d1844d8eee741b87568533 Mon Sep 17 00:00:00 2001 From: Thibault Jouan Date: Thu, 9 Oct 2014 19:44:07 +0000 Subject: [PATCH] Output all arguments in `echo' action --- lib/producer/core/actions/echo.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/producer/core/actions/echo.rb b/lib/producer/core/actions/echo.rb index 92ff802..984217c 100644 --- a/lib/producer/core/actions/echo.rb +++ b/lib/producer/core/actions/echo.rb @@ -7,7 +7,7 @@ module Producer end def apply - output.puts arguments.first + output.puts arguments end end end