From bb1fa3fa0e4c5bb9da67390c015cc97d43161e34 Mon Sep 17 00:00:00 2001 From: Evan Sosenko Date: Tue, 24 May 2016 20:47:29 -0700 Subject: [PATCH] Use %W over % in rake build --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 899a158..80406f1 100644 --- a/Rakefile +++ b/Rakefile @@ -23,7 +23,7 @@ task build: :clean do configs = %W(_config.yml _config.#{ENV['JEKYLL_ENV']}.yml) config = configs.map(&YAML.method(:load_file)).reduce(&:merge) - sh(*%(bundle exec jekyll build --config #{configs.join(',')})) + sh(*%W(bundle exec jekyll build --config #{configs.join(',')})) HTMLProofer.check_directory( 'dist',