Added make module-init command in Readme (#36667)
* Changes to prereq. instructions for windows and linux in readme Signed-off-by: Dipankar Das <dipankardas0115@gmail.com> * Correction in prerequisites section of readme Signed-off-by: Dipankar Das <dipankardas0115@gmail.com> Signed-off-by: Dipankar Das <dipankardas0115@gmail.com>pull/38737/head
parent
702568acfc
commit
38610739a0
11
README.md
11
README.md
|
|
@ -29,11 +29,18 @@ cd website
|
|||
|
||||
The Kubernetes website uses the [Docsy Hugo theme](https://github.com/google/docsy#readme). Even if you plan to run the website in a container, we strongly recommend pulling in the submodule and other development dependencies by running the following:
|
||||
|
||||
```bash
|
||||
# pull in the Docsy submodule
|
||||
### Windows
|
||||
```powershell
|
||||
# fetch submodule dependencies
|
||||
git submodule update --init --recursive --depth 1
|
||||
```
|
||||
|
||||
### Linux / other Unix
|
||||
```bash
|
||||
# fetch submodule dependencies
|
||||
make module-init
|
||||
```
|
||||
|
||||
## Running the website using a container
|
||||
|
||||
To build the site in a container, run the following:
|
||||
|
|
|
|||
Loading…
Reference in New Issue