From 9221e90c81b43b796d8ad8be08b4fa65a55d24de Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 6 Dec 2025 04:21:28 +0800 Subject: Support windows - Simplify PowerShell wrapper function parameter handling - Change log filename format to use hyphens instead of colons - Correct Windows drive letter extraction logic to avoid compilation errors --- scripts/jv_cli.ps1 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'scripts/jv_cli.ps1') diff --git a/scripts/jv_cli.ps1 b/scripts/jv_cli.ps1 index 0325578..e8d3674 100644 --- a/scripts/jv_cli.ps1 +++ b/scripts/jv_cli.ps1 @@ -18,8 +18,7 @@ $env:JV_AUTO_UPDATE = "yes" ############### function jv { - param([string[]]$Arguments) - & (Get-Command jv -CommandType Application) @Arguments + & (Get-Command jv -CommandType Application) @args } function jvh { jv here @args } -- cgit