From ee2b40bcaa5471d34c8754b6cd30c01f319db1bc Mon Sep 17 00:00:00 2001 From: Mark Cornick Date: Mon, 2 Apr 2012 10:12:46 -0400 Subject: [PATCH] Fix stray backtick causing installer errors There's a stray backtick in the Rakefile which causes the installer to fail copying files. This commit removes the backtick and relocates a right brace to make everything work properly. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 1155fbc..1085afc 100644 --- a/Rakefile +++ b/Rakefile @@ -44,7 +44,7 @@ task :install => [:submodules] do end end FileUtils.rm_rf(target) if overwrite || overwrite_all - run %{ mv "$HOME/.#{file}" "$HOME/.#{file}.backup"` if backup || backup_all } + run %{ mv "$HOME/.#{file}" "$HOME/.#{file}.backup" } if backup || backup_all end run %{ ln -s "#{source}" "#{target}" } end