From 6d1366ca220db83706cf65a00eec879dd994f4d4 Mon Sep 17 00:00:00 2001 From: Michael Dewberry Date: Sun, 14 Jan 2024 14:07:20 -0500 Subject: [PATCH] Add --recursive flag to git submodule sync Necessary when a plugin contains submodules and its .gitmodules upstream url configuration changes. --- scripts/update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/update.py b/scripts/update.py index d43cb092..9f018184 100644 --- a/scripts/update.py +++ b/scripts/update.py @@ -21,7 +21,7 @@ PLUGIN_DIR = os.path.join(RACK_USER_DIR, "plugins-lin-x64") # Update git before continuing common.system("git pull") -common.system("git submodule sync --quiet") +common.system("git submodule sync --quiet --recursive") common.system("git submodule update --init --recursive") plugin_paths = sys.argv[1:]