Skip to content

Commit

Permalink
Added prompt for overwriting posts and pages when a new_post and new_…
Browse files Browse the repository at this point in the history
…page tasks are run and the file already exists. Fixes #130
  • Loading branch information
imathis committed Sep 3, 2011
1 parent 724fd1d commit 3f07677
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Rakefile
Expand Up @@ -92,6 +92,11 @@ task :new_post, :title do |t, args|
args.with_defaults(:title => 'new-post')
title = args.title
filename = "#{source_dir}/#{posts_dir}/#{Time.now.strftime('%Y-%m-%d')}-#{title.to_url}.#{new_post_ext}"
if File.exist?(filename)
puts "### #{filename} Already exists. Overwrite? y/n:"
response = $stdin.gets.chomp.downcase
next unless response == 'y'
end
puts "Creating new post: #{filename}"
open(filename, 'w') do |post|
system "mkdir -p #{source_dir}/#{posts_dir}/";
Expand Down Expand Up @@ -119,6 +124,11 @@ task :new_page, :filename do |t, args|
filename = "#{name}.#{extension}"
mkdir_p page_dir
file = page_dir + filename
if File.exist?(file)
puts "### #{file} Already exists. Overwrite? y/n:"
response = $stdin.gets.chomp.downcase
next unless response == 'y'
end
puts "Creating new page: #{file}"
open(file, 'w') do |page|
page.puts "---"
Expand Down

0 comments on commit 3f07677

Please sign in to comment.