diff --git a/build.py b/build.py index 50f271b56d74cdfb7f69be9ea36282ab59f5a372..f2f14cb5d83ee9a27a8de0a1ca29f1ce42221888 100755 --- a/build.py +++ b/build.py @@ -405,6 +405,9 @@ def run_init(): execute_script(['./scripts/format.sh --install %(path)s'], {"path": hooks_dir}) + subprocess.run(["git", "submodule", "update", "--recursive", "--init"], + check=True, cwd='client-qt') + def copy_file(src, dest): print("Copying:" + src + " to " + dest)