only warn if not existing symlink

This commit is contained in:
James Walker 2011-02-27 16:32:51 -05:00
parent 11be3a446d
commit edd9730372

View File

@ -10,6 +10,8 @@ Dir['*'].each do |file|
unless File.exist? target
`ln -vsf #{File.expand_path file} #{target}`
else
unless File.symlink? target
puts "#{target} exists"
end
end
end