From 241cf7aa822c82f3b1955a5593a7fee6bc250caf Mon Sep 17 00:00:00 2001 From: jdoiro3 Date: Mon, 24 Jun 2024 10:56:52 -0400 Subject: [PATCH] fixed another bug that I can't believe I didn't catch. Need to pay more attention --- mkdocs_multirepo_plugin/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs_multirepo_plugin/util.py b/mkdocs_multirepo_plugin/util.py index 7b76cb3..33c7a5f 100644 --- a/mkdocs_multirepo_plugin/util.py +++ b/mkdocs_multirepo_plugin/util.py @@ -103,7 +103,7 @@ def git_supports_sparse_clone() -> bool: """The sparse-checkout was added in 2.25.0 See RelNotes here: https://github.com/git/git/blob/9005149a4a77e2d3409c6127bf4fd1a0893c3495/Documentation/RelNotes/2.25.0.txt#L67 """ - return git_version() < Version(2, 25, 0) + return git_version() >= Version(2, 25, 0) async def execute_bash_script(