mirror of https://github.com/astral-sh/uv
Fix to miss string termination in PowerShell commands for shell autocompletion docs. (#6491)
## Summary Missing string termination in PowerShell commands for shell autocompletion docs. Incomplete command:  ## Test Plan Run docs server locally 
This commit is contained in:
parent
c5440001ce
commit
ad0900458f
|
|
@ -120,7 +120,7 @@ To enable shell autocompletion for uv commands, run one of the following:
|
|||
=== "Windows"
|
||||
|
||||
```powershell
|
||||
Add-Content -Path $PROFILE -Value '(& uv generate-shell-completion powershell) | Out-String | Invoke-Expression
|
||||
Add-Content -Path $PROFILE -Value '(& uv generate-shell-completion powershell) | Out-String | Invoke-Expression'
|
||||
```
|
||||
|
||||
Then restart the shell or source the shell config file.
|
||||
|
|
|
|||
Loading…
Reference in New Issue