mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-10 04:54:03 -08:00
parent
a9671df378
commit
4d048b2658
|
@ -34,13 +34,15 @@ New-Module -Name "oh-my-posh-core" -ScriptBlock {
|
|||
$StartInfo.WorkingDirectory = $PWD.ProviderPath
|
||||
}
|
||||
$StartInfo.CreateNoWindow = $true
|
||||
$Process.Start() | Out-Null
|
||||
$Process.WaitForExit() | Out-Null
|
||||
$stderr = $Process.StandardError.ReadToEnd().Trim()
|
||||
[void]$Process.Start()
|
||||
$stdoutTask = $Process.StandardOutput.ReadToEndAsync()
|
||||
$stderrTask = $Process.StandardError.ReadToEndAsync()
|
||||
[void]$Process.WaitForExit()
|
||||
$stderr = $stderrTask.Result.Trim()
|
||||
if ($stderr -ne '') {
|
||||
$Host.UI.WriteErrorLine($stderr)
|
||||
}
|
||||
return $Process.StandardOutput.ReadToEnd()
|
||||
$stdoutTask.Result
|
||||
}
|
||||
|
||||
function Set-PoshContext {}
|
||||
|
|
Loading…
Reference in a new issue