From 1a41a3442efe81b3146341506aaf063812c6672b Mon Sep 17 00:00:00 2001 From: faulty Date: Wed, 4 Jan 2023 18:54:48 +0100 Subject: [PATCH] submodules fix --- tools/manager/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/manager/main.py b/tools/manager/main.py index a7674ea..d7d53ff 100644 --- a/tools/manager/main.py +++ b/tools/manager/main.py @@ -85,7 +85,7 @@ def main(): def update(): os.system("git pull") - os.system("git submodule update --init") + os.system("git submodule update --recursive --remote --init") fnlist = { "up": lambda: dc(f"up -d {' '.join(args.args)}"),