Browse Source

Add --recursive flag to git submodule sync

Necessary when a plugin contains submodules and its .gitmodules upstream url configuration changes.
pull/785/head
Michael Dewberry GitHub 1 year ago
parent
commit
6d1366ca22
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      scripts/update.py

+ 1
- 1
scripts/update.py View File

@@ -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:]


Loading…
Cancel
Save