Fix conflict resolution when destination is a plain file (not a symlink).
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
require 'pathname'
|
require 'pathname'
|
||||||
lib = Pathname.new(__FILE__).dirname.join('..', 'lib').expand_path
|
lib = Pathname.new(__FILE__).dirname.join('..', 'lib').expand_path
|
||||||
$LOAD_PATH.unshift.unshift lib.to_s unless $LOAD_PATH.include?(lib.to_s)
|
$LOAD_PATH.unshift lib.to_s
|
||||||
|
|
||||||
require 'homesick'
|
require 'homesick'
|
||||||
|
|
||||||
|
|||||||
@@ -31,6 +31,12 @@ class Homesick
|
|||||||
system "ln -sf #{source} #{destination}" unless options[:pretend]
|
system "ln -sf #{source} #{destination}" unless options[:pretend]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
elsif destination.exist?
|
||||||
|
say_status :conflict, "#{destination} exists", :red unless options[:quiet]
|
||||||
|
|
||||||
|
if shell.file_collision(destination) { source }
|
||||||
|
system "ln -sf #{source} #{destination}" unless options[:pretend]
|
||||||
|
end
|
||||||
else
|
else
|
||||||
say_status :symlink, "#{source.expand_path} to #{destination.expand_path}", :green unless options[:quiet]
|
say_status :symlink, "#{source.expand_path} to #{destination.expand_path}", :green unless options[:quiet]
|
||||||
system "ln -s #{source} #{destination}" unless options[:pretend]
|
system "ln -s #{source} #{destination}" unless options[:pretend]
|
||||||
|
|||||||
Reference in New Issue
Block a user