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 ++++++++ .run/src/bin/powrshell-script.ps1 | 8 -------- 2 files changed, 8 insertions(+), 8 deletions(-) create mode 100644 .run/src/bin/powershell-script.ps1 delete mode 100644 .run/src/bin/powrshell-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 "" diff --git a/.run/src/bin/powrshell-script.ps1 b/.run/src/bin/powrshell-script.ps1 deleted file mode 100644 index 70f3bae..0000000 --- a/.run/src/bin/powrshell-script.ps1 +++ /dev/null @@ -1,8 +0,0 @@ -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