From c990959635d6a3496ca15a56b4ee85c6ca357987 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Thu, 2 Jul 2026 11:29:07 +0800 Subject: fix: correct misspelled PowerShell script filename --- .run/src/bin/powershell-script.ps1 | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .run/src/bin/powershell-script.ps1 (limited to '.run/src/bin/powershell-script.ps1') diff --git a/.run/src/bin/powershell-script.ps1 b/.run/src/bin/powershell-script.ps1 new file mode 100644 index 0000000..70f3bae --- /dev/null +++ b/.run/src/bin/powershell-script.ps1 @@ -0,0 +1,8 @@ +Write-Host "" +Write-Host ' Welcome to use `run.sh` / `run.ps1`' +Write-Host "" +Write-Host ' > "Hello World"' +Write-Host " > cwd : `"$(Get-Location)`"" +$items = ($args | ForEach-Object { "`"$_`"" }) -join ", " +Write-Host " > args : $items" +Write-Host "" -- cgit