Преглед изворни кода

Fix incorrect order in recursive update command

Correct order is `update --init --recursive` instead of `--init update --recursive`
Twarit Waikar пре 6 година
родитељ
комит
5c2b121ed4
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      tutorials/plugins/gdnative/gdnative-cpp-example.rst

+ 1 - 1
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.