Skip to content
Snippets Groups Projects
Commit 8e33a612 authored by Andreas Traczyk's avatar Andreas Traczyk
Browse files

build: windows: only init the required client submodules

Change-Id: Ia4ad3e76962fac38c8f482fb7892b259a968ce5f
parent 3e17a9b2
No related branches found
No related tags found
No related merge requests found
......@@ -190,7 +190,15 @@ def init_submodules():
"""Initialize any git submodules in the project."""
print("Initializing submodules...")
if execute_cmd(["git", "submodule", "update", "--init", "--recursive"], False):
# Init the client submodules for Windows other than the daemon.
submodules = [
"3rdparty/qrencode-win32",
"3rdparty/SortFilterProxyModel",
"3rdparty/md4c",
"3rdparty/tidy-html5",
]
if execute_cmd(["git", "submodule", "update", "--init" ] + submodules,
False):
print("Submodule initialization error.")
sys.exit(1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment