From ba91a6920501b75c5ec25f736c2e5d68b08dadfa Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Wed, 26 Aug 2020 11:41:15 +0200 Subject: [PATCH] Add condition to clone, change protonvpn installation for Arch: use AUR --- install.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/install.py b/install.py index 378d562..d542682 100755 --- a/install.py +++ b/install.py @@ -70,9 +70,15 @@ class Installer: relpath: str = path.relpath(self.home) return "~/" + relpath - def do_clone(self, url: str, dest: str, branch: str = "master") -> None: + def do_clone( + self, url: str, dest: str, branch: str = "master", condition: str = "true" + ) -> None: """Do the git clone.""" + if not self.evaluate_condition(condition): + ui.info_2("Skipping", url) + return + p_dest = Path(dest).expanduser() pretty_dest = self.pretty_path(p_dest) p_dest.parent.makedirs_p()