Skip to content

Commit 6d97712

Browse files
committed
Fix typo
1 parent 9a69c8e commit 6d97712

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ task :post do
5252
puts "Error - date format must be YYYY-MM-DD, please check you typed it correctly!"
5353
exit -1
5454
end
55-
filename = File.join(CONFIG['posts'], "##{date}-#{slug}.#{CONFIG['post_ext']}")
55+
filename = File.join(CONFIG['posts'], "#{date}-#{slug}.#{CONFIG['post_ext']}")
5656
if File.exist?(filename)
5757
abort("rake aborted!") if ask("#{filename} already exists. Do you want to overwrite?", ['y', 'n']) == 'n'
5858
end

0 commit comments

Comments
 (0)