Skip to content

Commit

Permalink
use symlink instead of hardlink
Browse files Browse the repository at this point in the history
  • Loading branch information
tmm1 committed Aug 12, 2010
1 parent 2293d91 commit b887fda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -126,7 +126,7 @@ task :link_vimrc do
%w[ vimrc gvimrc ].each do |file|
dest = File.expand_path("~/.#{file}")
unless File.exist?(dest)
ln(File.expand_path("../#{file}", __FILE__), dest)
ln_s(File.expand_path("../#{file}", __FILE__), dest)
end
end
end
Expand Down

0 comments on commit b887fda

Please sign in to comment.