You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Resolve-Path is prepending is prepending the powershell provider to the name for the path property, that's usually what you get when in the PsPath property.
System.Diagnostices.ProcessStartInfo Objests do not support the prepended powershell provider for working directory, consider switching the following line on Invoke-git.ps1 line 83
$Path = (Resolve-Path $Path).Path
to
$Path = (Resolve-Path $Path).ProviderPath
The text was updated successfully, but these errors were encountered:
Resolve-Path is prepending is prepending the powershell provider to the name for the path property, that's usually what you get when in the PsPath property.
System.Diagnostices.ProcessStartInfo Objests do not support the prepended powershell provider for working directory, consider switching the following line on Invoke-git.ps1 line 83
$Path = (Resolve-Path $Path).Path
to
$Path = (Resolve-Path $Path).ProviderPath
The text was updated successfully, but these errors were encountered: