Skip to content
This repository has been archived by the owner on Dec 14, 2018. It is now read-only.

Commit

Permalink
Use %W over % in rake build
Browse files Browse the repository at this point in the history
  • Loading branch information
razor-x committed May 25, 2016
1 parent d46ed93 commit bb1fa3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit bb1fa3f

Please sign in to comment.