Allow do_append to work even if destination exists

This commit is contained in:
flyingscorpio@arch-desktop 2020-06-17 13:16:29 +02:00
parent e250338c54
commit ed948dd047

View file

@ -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