Skip to content

Commit c4831ad

Browse files
committed
Fix validate-website-static options due to ruby#1496
1 parent 35381ee commit c4831ad

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Rakefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,10 @@ namespace :check do
206206
require 'jekyll'
207207
options = Jekyll.configuration
208208
Dir.chdir('_site') do
209-
system("validate-website-static --site '#{options['url']}/' --quiet")
209+
system("validate-website-static " \
210+
"--verbose " \
211+
"--exclude 'examples' " \
212+
"--site '#{options['url']}/'")
210213
exit($?.exitstatus)
211214
end
212215
end

0 commit comments

Comments
 (0)