We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c953499 commit 6a742e9Copy full SHA for 6a742e9
Rakefile
@@ -15,7 +15,8 @@ task :check_links do
15
16
Jekyll.logger.info "Checking userguide links..."
17
18
- FileUtils.mkdir("./_site")
+ dir = File.expand_path("./_site")
19
20
- HTMLProofer.check_directory("./_site", options).run
+ FileUtils.mkdir_p(dir)
21
+ HTMLProofer.check_directory(dir, options).run
22
end
0 commit comments