diff --git a/Documentation/README.md b/Documentation/README.md index 4f2970687e..860bf92026 100644 --- a/Documentation/README.md +++ b/Documentation/README.md @@ -66,7 +66,7 @@ The .NET Core Runtime consists of 4 repos, core-setup at the top of the stack (w This means that in order to get a runtime you'll need to build the source-build repo with the `/p:RootRepo=core-setup` parameter, this will automatically build coreclr, standard and corefx. Source-Build is composed by git submodules, so the first thing you need to run before doing anything is: ```console -git submodule --init --recursive +git submodule update --init --recursive ``` This will initialize the submodules and clone the repos under the src folder if they haven't been initialized. Note that this will update every submodule to their tracking commit checked in to the `source-build` repo . However you can go to each repo indivually, add custom remotes and checkout certain branches containing your changes. @@ -200,4 +200,4 @@ In order to run the app you have two options: - Run `dotnet publish -r RID`. You more information about publish and RID in [this guide](https://docs.microsoft.com/en-us/dotnet/core/rid-catalog). - Run produced executable in publish directory. 2. Use `dotnet run`: - - In order to use `dotnet run` you will have to install the produced runtime before running the app. Note that installing the runtime, whenever a real runtime for the current produced version is released, if you forget to delete/uninstall the custom runtime, it could cause issues. \ No newline at end of file + - In order to use `dotnet run` you will have to install the produced runtime before running the app. Note that installing the runtime, whenever a real runtime for the current produced version is released, if you forget to delete/uninstall the custom runtime, it could cause issues.