From 9cbba5eeacc7b5a801e244350ac95591c8754088 Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Fri, 4 Sep 2020 14:29:44 +0200 Subject: [PATCH] Explain do_clone in docstring, that includes pull to update --- install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.py b/install.py index aef7bed..7ae4556 100755 --- a/install.py +++ b/install.py @@ -73,7 +73,7 @@ class Installer: def do_clone( self, url: str, dest: str, branch: str = "master", condition: str = "true" ) -> None: - """Do the git clone.""" + """Clone if new, remove and clone if force, pull if update.""" if not self.evaluate_condition(condition): ui.info_2("Skipping", url)