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.
This commit is contained in:
Daniel Han 2026-03-25 15:14:51 +00:00
commit 561f0f39be

View file

@ -706,4 +706,4 @@ shell.Run cmd, 0, False
}
}
Install-UnslothStudio
Install-UnslothStudio @args