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.
This commit is contained in:
Mark Cornick 2012-04-02 10:12:46 -04:00
parent 4c41b17591
commit ee2b40bcaa

View File

@ -44,7 +44,7 @@ task :install => [:submodules] do
end end
end end
FileUtils.rm_rf(target) if overwrite || overwrite_all 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 end
run %{ ln -s "#{source}" "#{target}" } run %{ ln -s "#{source}" "#{target}" }
end end