Skip to content

Commit e1a3c4c

Browse files
committed
Updated task to reflect downcased files.
1 parent d4f5a6a commit e1a3c4c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Rakefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CLEAN.include '*.json'
55
namespace :test do
66
task :links2 do
77
require 'awesome_bot'
8-
content = File.read('README.md')
8+
content = File.read('readme.md')
99
result = AwesomeBot.check(content)
1010
puts result.success(nil) ? ':)' : ':('
1111
end
@@ -19,7 +19,7 @@ end
1919

2020
desc 'Regenerate the TOC.'
2121
task :toc do
22-
`node_modules/markdown-toc/cli.js -i README.md`
22+
`node_modules/markdown-toc/cli.js -i readme.md`
2323
end
2424

2525
desc 'Create the www sources.'

0 commit comments

Comments
 (0)