From e24bb02576e9ac727176d383632dad8b899d9aa4 Mon Sep 17 00:00:00 2001 From: Tom Bell Date: Wed, 19 Dec 2012 17:54:58 +0000 Subject: [PATCH] Update the Jekyll command for features testing :star: :metal: :star2: --- features/support/env.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/features/support/env.rb b/features/support/env.rb index 3166ce9c..912b735c 100644 --- a/features/support/env.rb +++ b/features/support/env.rb @@ -7,10 +7,11 @@ World do end TEST_DIR = File.join('/', 'tmp', 'jekyll') -JEKYLL_PATH = File.join(ENV['PWD'], 'bin', 'jekyll') +JEKYLL_PATH = File.join(ENV['PWD'], 'bin', 'jekyll2') def run_jekyll(opts = {}) command = JEKYLL_PATH + command << " build" command << " >> /dev/null 2>&1" if opts[:debug].nil? system command end