From ce0a6da88e81506b8b59e8b3adbe6c74da1b6eab Mon Sep 17 00:00:00 2001 From: Florin9doi Date: Tue, 23 Dec 2025 22:12:28 +0200 Subject: [PATCH] Docs: Update clone instructions --- BUILDING.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BUILDING.md b/BUILDING.md index 60b7046cb2..32cdc6cc03 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -108,9 +108,10 @@ Clone and initialize the repository ```bash git clone --recurse-submodules https://github.com/RPCS3/rpcs3.git cd rpcs3 +git submodule sync # This is automatically done by `git clone --recurse-submodules`, # but in case you forgot it, you can manually fetch submodules this way: -git submodule update --init +git submodule update --init --recursive ``` ### Windows