From ed948dd047bea51fa762a753565a036d1c1bb852 Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Wed, 17 Jun 2020 13:16:29 +0200 Subject: [PATCH] Allow do_append to work even if destination exists --- install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.py b/install.py index 12dff6b..b6f200a 100755 --- a/install.py +++ b/install.py @@ -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