aboutsummaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorBrandon Mathis <brandon@imathis.com>2011-07-11 11:17:15 -0400
committerBrandon Mathis <brandon@imathis.com>2011-07-11 11:17:15 -0400
commitee7b9dd9581a048cee17e89181cba94254033fb2 (patch)
tree42c7d47ebfcaf9faf68a302a39a4815ef2e8f5ec /Rakefile
parentd4139e394ec9f70acfcb35f25340bdb541d0d7ee (diff)
downloadmy_new_personal_website-ee7b9dd9581a048cee17e89181cba94254033fb2.tar.xz
my_new_personal_website-ee7b9dd9581a048cee17e89181cba94254033fb2.zip
Changed _plugins folder to plugins and updated rake tasks accordingly
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index 0a075b05..054d147d 100644
--- a/Rakefile
+++ b/Rakefile
@@ -25,10 +25,10 @@ desc "Initial setup for Octopress: copies the default theme into the path of Jek
task :install, :theme do |t, args|
# copy theme into working Jekyll directories
theme = args.theme || 'classic'
- puts "## Copying "+theme+" theme into ./#{source_dir} ./sass and ./_plugins "
+ puts "## Copying "+theme+" theme into ./#{source_dir} ./sass and ./plugins "
system "mkdir -p #{source_dir}; cp -R #{themes_dir}/"+theme+"/source/ #{source_dir}/"
system "mkdir -p sass; cp -R #{themes_dir}/"+theme+"/sass/ sass/"
- system "mkdir -p _plugins; cp -R #{themes_dir}/"+theme+"/_plugins/ _plugins/"
+ system "mkdir -p plugins; cp -R #{themes_dir}/"+theme+"/plugins/ plugins/"
system "mkdir -p #{source_dir}/#{posts_dir}";
end
@@ -138,6 +138,7 @@ task :config_deploy, :branch do |t, args|
f.write rakefile
end
end
+ puts "## Deployment configured. Now you can deploy to the #{args.branch} branch with `rake deploy` ##"
end
def ok_failed(condition)