Skip to content

Commit

Permalink
Update wiki for commandlets
Browse files Browse the repository at this point in the history
  • Loading branch information
oZakari committed Aug 15, 2024
1 parent 10bdc54 commit f731a75
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 24 deletions.
16 changes: 8 additions & 8 deletions docs/wiki/[User-Guide]-Quick-Start-Phase-2-Azure-DevOps.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ Although you can just run `Deploy-Accelerator` and fill out the prompted inputs,

```pwsh
# Windows
New-Item c:\accelerator\config\inputs.yaml -Force
New-Item c:\accelerator\output
New-Item -ItemType "file" c:\accelerator\config\inputs.yaml -Force
New-Item -ItemType "directory" c:\accelerator\output
```
```pwsh
# Linux/Mac
New-Item ~/accelerator/config/inputs.yaml -Force
New-Item ~/accelerator/output
New-Item -ItemType "file" ~/accelerator/config/inputs.yaml -Force
New-Item -ItemType "directory" ~/accelerator/output
```
```plaintext
Expand Down Expand Up @@ -89,14 +89,14 @@ Although you can just run `Deploy-Accelerator` and fill out the prompted inputs,
```pwsh
# Windows
New-Item c:\accelerator\config\inputs.yaml -Force
New-Item c:\accelerator\output
New-Item -ItemType "file" c:\accelerator\config\inputs.yaml -Force
New-Item -ItemType "directory" c:\accelerator\output
```
```pwsh
# Linux/Mac
New-Item ~/accelerator/config/inputs.yaml -Force
New-Item ~/accelerator/output
New-Item -ItemType "file" ~/accelerator/config/inputs.yaml -Force
New-Item -ItemType "directory" ~/accelerator/output
```
```plaintext
Expand Down
16 changes: 8 additions & 8 deletions docs/wiki/[User-Guide]-Quick-Start-Phase-2-GitHub.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ Although you can just run `Deploy-Accelerator` and fill out the prompted inputs,

```pwsh
# Windows
New-Item c:\accelerator\config\inputs.yaml -Force
New-Item c:\accelerator\output
New-Item -ItemType "file" c:\accelerator\config\inputs.yaml -Force
New-Item -ItemType "directory" c:\accelerator\output
# Linux/Mac
New-Item ~/accelerator/config/inputs.yaml -Force
New-Item ~/accelerator/output
New-Item -ItemType "file" ~/accelerator/config/inputs.yaml -Force
New-Item -ItemType "directory" ~/accelerator/output
```
```plaintext
Expand Down Expand Up @@ -81,12 +81,12 @@ Although you can just run `Deploy-Accelerator` and fill out the prompted inputs,
```pwsh
# Windows
New-Item c:\accelerator\config\inputs.yaml -Force
New-Item c:\accelerator\output
New-Item -ItemType "file" c:\accelerator\config\inputs.yaml -Force
New-Item -ItemType "directory" c:\accelerator\output
# Linux/Mac
New-Item ~/accelerator/config/inputs.yaml -Force
New-Item ~/accelerator/output
New-Item -ItemType "file" ~/accelerator/config/inputs.yaml -Force
New-Item -ItemType "directory" ~/accelerator/output
```
```plaintext
Expand Down
16 changes: 8 additions & 8 deletions docs/wiki/[User-Guide]-Quick-Start-Phase-2-Local.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ Although you can just run `Deploy-Accelerator` and fill out the prompted inputs,

```pwsh
# Windows
New-Item c:\accelerator\config\inputs.yaml -Force
New-Item c:\accelerator\output
New-Item -ItemType "file" c:\accelerator\config\inputs.yaml -Force
New-Item -ItemType "directory" c:\accelerator\output
# Linux/Mac
New-Item ~/accelerator/config/inputs.yaml -Force
New-Item ~/accelerator/output
New-Item -ItemType "file" ~/accelerator/config/inputs.yaml -Force
New-Item -ItemType "directory" ~/accelerator/output
```
```plaintext
Expand Down Expand Up @@ -74,14 +74,14 @@ Although you can just run `Deploy-Accelerator` and fill out the prompted inputs,
```pwsh
# Windows
New-Item c:\accelerator\config\inputs.yaml -Force
New-Item c:\accelerator\output
New-Item -ItemType "file" c:\accelerator\config\inputs.yaml -Force
New-Item -ItemType "directory" c:\accelerator\output
```
```pwsh
# Linux/Mac
New-Item ~/accelerator/config/inputs.yaml -Force
New-Item ~/accelerator/output
New-Item -ItemType "file" ~/accelerator/config/inputs.yaml -Force
New-Item -ItemType "directory" ~/accelerator/output
```
```plaintext
Expand Down

0 comments on commit f731a75

Please sign in to comment.