From 519b60d0121d529839fbc18a9d538b6fc4c462bb Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Tue, 21 Oct 2014 20:32:23 -0700 Subject: [PATCH] Fix 2 syntax errors. --- features/support/env.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/features/support/env.rb b/features/support/env.rb index 8bb0274d..ba4555fe 100644 --- a/features/support/env.rb +++ b/features/support/env.rb @@ -30,8 +30,8 @@ def run_jekyll(args) child.status.exitstatus == 0 end -def run_in_shell(args, options) - POSIX::Spawn::Child.new *args, :out => [JEKYLL_COMMAND_OUTPUT_FILE, "w"]) +def run_in_shell(*args) + POSIX::Spawn::Child.new *args, :out => [JEKYLL_COMMAND_OUTPUT_FILE, "w"] end def slug(title)