From 9bcaaca68191d9dcdb1bcea65ab50af2c142f480 Mon Sep 17 00:00:00 2001 From: m3rchant-man Date: Mon, 27 Oct 2025 18:08:08 -0400 Subject: [PATCH] Prevents soft failure of install script on failed submodule --- install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.py b/install.py index f6641bf..a2a0260 100644 --- a/install.py +++ b/install.py @@ -115,7 +115,7 @@ def download_and_install_extension() -> bool: def update_submodules(): # Run git submodule update --init - subprocess.run(["git", "submodule", "update", "--init"]) + subprocess.run(["git", "submodule", "update", "--init"], check=True) if __name__ == "__main__":