Allow do_append to work even if destination exists
This commit is contained in:
parent
e250338c54
commit
ed948dd047
1 changed files with 1 additions and 1 deletions
|
@ -252,7 +252,7 @@ class Installer:
|
|||
p_dest = Path(dest).expanduser()
|
||||
pretty_dest = self.pretty_path(p_dest)
|
||||
|
||||
if p_dest.exists() and not self.force:
|
||||
if p_dest.exists() and not self.force and not append:
|
||||
ui.info_2("Skipping", pretty_dest)
|
||||
return
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue