diff options
author | Bruno Gava Guerra <[email protected]> | 2022-04-02 07:07:48 -0300 |
---|---|---|
committer | GitHub <[email protected]> | 2022-04-02 12:07:48 +0200 |
commit | 84e499aa38f661be5ea54a6bf7b0cbbf987ec9ff (patch) | |
tree | 07e227357957ab6ed839333734cf9a5c02c225a7 /utils/installer/install.ps1 | |
parent | 7807f147c192fdb6aec7659a3098b4bf31852fcd (diff) |
fix(installer/pwsh): fixes some details on installer and uninstaller (#2404)
Diffstat (limited to 'utils/installer/install.ps1')
-rw-r--r-- | utils/installer/install.ps1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/installer/install.ps1 b/utils/installer/install.ps1 index bef15ac2..182e7bac 100644 --- a/utils/installer/install.ps1 +++ b/utils/installer/install.ps1 @@ -267,7 +267,7 @@ function create_alias { return } - Add-Content -Path $PROFILE -Value $("Set-Alias lvim $lvim_bin") + Add-Content -Path $PROFILE -Value $("`r`nSet-Alias lvim $lvim_bin") Write-Host 'To use the new alias in this window reload your profile with: `. $PROFILE`' -ForegroundColor Green } |