From 75d59911ae6d9dd559fa71b17a2539380406d795 Mon Sep 17 00:00:00 2001 From: Ashwin Maroli Date: Mon, 19 Sep 2016 17:08:00 +0530 Subject: [PATCH] run features on windows --- features/support/helpers.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/support/helpers.rb b/features/support/helpers.rb index 79210ad7..0d809bca 100644 --- a/features/support/helpers.rb +++ b/features/support/helpers.rb @@ -90,7 +90,7 @@ end def run_jekyll(args) args = args.strip.split(" ") # Shellwords? - process = run_in_shell(Paths.jekyll_bin.to_s, *args, "--trace") + process = run_in_shell("ruby", Paths.jekyll_bin.to_s, *args, "--trace") process.exitstatus.zero? end