From f731a7585515901a8978c1c679203d5d08c801f4 Mon Sep 17 00:00:00 2001 From: Zach Trocinski Date: Thu, 15 Aug 2024 00:04:44 -0500 Subject: [PATCH] Update wiki for commandlets --- ...er-Guide]-Quick-Start-Phase-2-Azure-DevOps.md | 16 ++++++++-------- .../[User-Guide]-Quick-Start-Phase-2-GitHub.md | 16 ++++++++-------- .../[User-Guide]-Quick-Start-Phase-2-Local.md | 16 ++++++++-------- 3 files changed, 24 insertions(+), 24 deletions(-) diff --git a/docs/wiki/[User-Guide]-Quick-Start-Phase-2-Azure-DevOps.md b/docs/wiki/[User-Guide]-Quick-Start-Phase-2-Azure-DevOps.md index cd5bc576..e9189dcb 100644 --- a/docs/wiki/[User-Guide]-Quick-Start-Phase-2-Azure-DevOps.md +++ b/docs/wiki/[User-Guide]-Quick-Start-Phase-2-Azure-DevOps.md @@ -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 @@ -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 diff --git a/docs/wiki/[User-Guide]-Quick-Start-Phase-2-GitHub.md b/docs/wiki/[User-Guide]-Quick-Start-Phase-2-GitHub.md index 22fbde5a..7c3c7cf8 100644 --- a/docs/wiki/[User-Guide]-Quick-Start-Phase-2-GitHub.md +++ b/docs/wiki/[User-Guide]-Quick-Start-Phase-2-GitHub.md @@ -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 @@ -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 diff --git a/docs/wiki/[User-Guide]-Quick-Start-Phase-2-Local.md b/docs/wiki/[User-Guide]-Quick-Start-Phase-2-Local.md index 8f1a40bb..50c83d25 100644 --- a/docs/wiki/[User-Guide]-Quick-Start-Phase-2-Local.md +++ b/docs/wiki/[User-Guide]-Quick-Start-Phase-2-Local.md @@ -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 @@ -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