Skip to content

Commit

Permalink
A new Windows install can't continue without creating $PROFILE.
Browse files Browse the repository at this point in the history
  • Loading branch information
fnando committed Nov 19, 2024
1 parent d092c01 commit dddfd85
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/build/smart-contracts/getting-started/setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,8 @@ stellar completion --shell powershell | Out-String | Invoke-Expression
To enable autocomplete permanently, run the following commands, then restart your terminal:

```powershell
New-Item -ItemType Directory -Path $(Split-Path $PROFILE) -Force
if (-Not (Test-Path $PROFILE)) { New-Item -ItemType File -Path $PROFILE | Out-Null }
Add-Content $PROFILE 'Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete'
Add-Content $PROFILE 'stellar completion --shell powershell | Out-String | Invoke-Expression'
```
Expand Down

0 comments on commit dddfd85

Please sign in to comment.