refactor: Update git submodule initialization command

- Modify the git submodule update command in the CircleCI configuration file to include the --recursive flag
- This ensures that all submodules are recursively updated during the build process
This commit is contained in:
bobo.yang 2024-06-25 14:06:48 +08:00
parent 01a1c5c491
commit b106ad555e
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ jobs:
steps: steps:
- checkout - checkout
- run: git submodule sync - run: git submodule sync
- run: git submodule update --init - run: git submodule update --init --recursive
- run: npm install - run: npm install
- run: npm run build - run: npm run build
- persist_to_workspace: - persist_to_workspace:

2
tools

@ -1 +1 @@
Subproject commit 5a7d540858bb0ac987a6ff11218a6d09c662b2b0 Subproject commit 94b85be513e345ea859cf296b0c16ddf2ba2ea1f