Skip to content

Commit 54e232e

Browse files
authored
Merge pull request ruby#1503 from spk/fix-validate-website-static
Fix validate-website-static options due to ruby#1496
2 parents 35381ee + c4831ad commit 54e232e

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)