From 5c2b121ed41daf6de5452227564ced1f90097ffc Mon Sep 17 00:00:00 2001 From: Twarit Waikar Date: Tue, 25 Jun 2019 23:05:25 +0530 Subject: [PATCH] Fix incorrect order in recursive update command Correct order is `update --init --recursive` instead of `--init update --recursive` --- tutorials/plugins/gdnative/gdnative-cpp-example.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/plugins/gdnative/gdnative-cpp-example.rst b/tutorials/plugins/gdnative/gdnative-cpp-example.rst index 8a158699a..80e2a6a4b 100644 --- a/tutorials/plugins/gdnative/gdnative-cpp-example.rst +++ b/tutorials/plugins/gdnative/gdnative-cpp-example.rst @@ -102,7 +102,7 @@ You will need to execute the following commands: .. code-block:: none cd gdnative_cpp_example - git submodule --init update --recursive + git submodule update --init --recursive This will clone these two repositories into your project folder.