From 39ec55b6057257a2d2fba4ca25eb58e5c5ef234c Mon Sep 17 00:00:00 2001 From: Brandon Mathis Date: Sat, 10 Dec 2011 18:30:33 -0600 Subject: [PATCH] Removed offending paren in Rakefile --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 4a415c3..de70f6b 100644 --- a/Rakefile +++ b/Rakefile @@ -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"