fixed merge in rakefile

This commit is contained in:
Brandon Mathis 2011-12-10 18:19:39 -06:00
commit a4ea559ec9

View File

@ -7,7 +7,7 @@ require "stringex"
ssh_user = "imathis@octopress.org"
document_root = "~/octopress.org/"
ssh_port = "22"
rsync_delete = true
deploy_default = "rsync"
# This will be configured for you when you run config_deploy
@ -232,8 +232,12 @@ end
desc "Deploy website via rsync"
task :rsync do
exclude = ""
if File.exists?('./rsync-exclude'))
exclude = "--exclude-from '#{File.expand_path('./rsync-exclude')}'"
end
puts "## Deploying website via Rsync"
ok_failed system("rsync -avze 'ssh -p #{ssh_port}' --delete #{public_dir}/ #{ssh_user}:#{document_root}")
ok_failed system("rsync -avze 'ssh -p #{ssh_port}' #{exclude} #{"--delete" unless rsync_delete == false} #{public_dir}/ #{ssh_user}:#{document_root}")
end
desc "deploy public directory to github pages"