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:
parent
4c41b17591
commit
ee2b40bcaa
2
Rakefile
2
Rakefile
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user