mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-09 20:44:03 -08:00
fix(pwsh): correct path separator
This commit is contained in:
parent
8546ec3ca0
commit
5c5f0fe157
|
@ -1,6 +1,6 @@
|
|||
$env:POSH_PATH = "$((Get-Item $MyInvocation.MyCommand.ScriptBlock.Module.ModuleBase).Parent.FullName)"
|
||||
$env:POSH_THEMES_PATH = $env:POSH_PATH + "/themes"
|
||||
$env:PATH = "$env:POSH_PATH;$env:PATH"
|
||||
$env:PATH = $env:POSH_PATH + [System.IO.Path]::PathSeparator + $env:PATH
|
||||
|
||||
function Get-PoshDownloadUrl {
|
||||
param(
|
||||
|
|
Loading…
Reference in a new issue