Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .docker/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ if command -v git >/dev/null 2>&1; then
echo "Ensuring SDK submodule is initialized and pinned..."
# Keep local submodule config in sync with .gitmodules (e.g., update=checkout)
git submodule sync --recursive || true
# Clean submodules to discard local changes and untracked files
git submodule foreach --recursive "git reset --hard && git clean -fdx" || true
# Initialize and checkout recorded commits (pinned)
git submodule update --init --recursive --checkout || true
# Enable on-demand fetch for submodules (helps when switching branches)
Expand Down
Loading