Skip to content

Commit 8746750

Browse files
committed
Update commands needed to build docs
1 parent f5ada0e commit 8746750

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

docs/readme.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,28 +17,35 @@ expected.
1717

1818
## Serving the documentation locally
1919

20-
To serve up the documentation locally, you need to run the script
20+
To serve up the documentation locally, you need to run the following
21+
commands:
2122

2223
```shell
24+
./build.ps1 -Stage build -Target PrepareBuild
25+
./build.ps1 -Stage build -Target Build
2326
./build.ps1 -Stage docs -Target PreviewDocs
2427
```
2528

2629
### On Windows
2730

28-
On Windows, you need to run the following build command in a PowerShell
31+
On Windows, you need to run the following commands in a PowerShell
2932
terminal:
3033

3134
```shell
35+
./build.ps1 -Stage build -Target PrepareBuild
36+
./build.ps1 -Stage build -Target Build
3237
./build.ps1 -Stage docs -Target PreviewDocs
3338
```
3439

3540
### On Unix
3641

3742
First you need to [install PowerShell on macOS][ps-mac] or [Linux][ps-linux],
38-
then execute the following command:
43+
then execute the following commands:
3944

4045
```shell
41-
pwsh ./build.ps1 -Stage docs -Target PreviewDocs
46+
./build.ps1 -Stage build -Target PrepareBuild
47+
./build.ps1 -Stage build -Target Build
48+
./build.ps1 -Stage docs -Target PreviewDocs
4249
```
4350

4451
After pressing enter, the documentation will be generated and then served under

0 commit comments

Comments
 (0)