diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-12-10 18:30:33 -0600 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-12-10 18:30:33 -0600 |
commit | 39ec55b6057257a2d2fba4ca25eb58e5c5ef234c (patch) | |
tree | 302812d08e9413e099ee272eed3e0e60b586a92b | |
parent | bdc3cb8bd3a59f1340a393dda545bb2522bc7b92 (diff) | |
download | my_new_personal_website-39ec55b6057257a2d2fba4ca25eb58e5c5ef234c.tar.xz my_new_personal_website-39ec55b6057257a2d2fba4ca25eb58e5c5ef234c.zip |
Removed offending paren in Rakefile
Diffstat (limited to '')
-rw-r--r-- | Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -233,7 +233,7 @@ end desc "Deploy website via rsync" task :rsync do exclude = "" - if File.exists?('./rsync-exclude')) + if File.exists?('./rsync-exclude') exclude = "--exclude-from '#{File.expand_path('./rsync-exclude')}'" end puts "## Deploying website via Rsync" |