From bb9b0db37962f8d7dab9c846f26644a25c3fe010 Mon Sep 17 00:00:00 2001 From: yuriks Date: Tue, 21 Oct 2014 10:19:21 -0700 Subject: [PATCH] Use --recursive option for git clone --- Linux-Build.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Linux-Build.md b/Linux-Build.md index 5e392f4..0df0f50 100644 --- a/Linux-Build.md +++ b/Linux-Build.md @@ -33,11 +33,12 @@ If you're on Arch Linux, you can use `pacman -S glfw` instead. ### Cloning Citra in Git: ``` -git clone https://github.com/citra-emu/citra +git clone --recursive https://github.com/citra-emu/citra cd citra -git submodule update --init ``` +The `--recursive` option automatically clones the required Git submodules too. + ### Building Citra: ```