diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-06-08 16:36:10 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-06-08 16:36:10 -0400 |
commit | 519e234aab885944cf165f29a2a5f09bf02f0f79 (patch) | |
tree | 3dfeace173dbe17832def2c02e36494161132ce8 /Rakefile | |
parent | 4b56cd93283f1941e803647f417e1ac73457b6b8 (diff) | |
download | my_new_personal_website-519e234aab885944cf165f29a2a5f09bf02f0f79.tar.xz my_new_personal_website-519e234aab885944cf165f29a2a5f09bf02f0f79.zip |
Improved theme install process
added missing assets
Diffstat (limited to '')
-rw-r--r-- | Rakefile | 11 |
1 files changed, 0 insertions, 11 deletions
@@ -37,17 +37,6 @@ task :install, :theme do |t, args| system "cp -R themes/"+theme+"/source source" system "cp -R themes/"+theme+"/sass sass" system "cp -R themes/"+theme+"/_plugins/ _plugins/" - - # The directories source and sass are ignored for development, but when Octopress is installed - # Users must be able to commit these directories, so this removes those lines from the gitignore - puts "## Cleaning up..." - new_content = "" - File.read('.gitignore').each_line do |e| - new_content << e unless e.strip == 'source' || e.strip == 'sass' - end - File.open('.gitignore', 'w') do |io| - io << new_content - end end ## if you're deploying with github, change the default deploy to push_github |