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:
parent
289c7dd7bb
commit
561f0f39be
1 changed files with 1 additions and 1 deletions
|
|
@ -706,4 +706,4 @@ shell.Run cmd, 0, False
|
|||
}
|
||||
}
|
||||
|
||||
Install-UnslothStudio
|
||||
Install-UnslothStudio @args
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue