From 561f0f39be429e93340a4b72ead4488fd81bcdf1 Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Wed, 25 Mar 2026 15:14:51 +0000 Subject: [PATCH] Fix install.ps1 --local: pass script args to Install-UnslothStudio The function was called with no arguments, so $args inside the function was always empty. Script-level args (--local, --package) were never forwarded. Use @args splatting to pass them through. --- install.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.ps1 b/install.ps1 index 9405072bd7..bb0acf1237 100644 --- a/install.ps1 +++ b/install.ps1 @@ -706,4 +706,4 @@ shell.Run cmd, 0, False } } -Install-UnslothStudio +Install-UnslothStudio @args