Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Invoke-git not working when given a network Path #68

Open
JefeDavis opened this issue Sep 14, 2018 · 1 comment
Open

Invoke-git not working when given a network Path #68

JefeDavis opened this issue Sep 14, 2018 · 1 comment

Comments

@JefeDavis
Copy link

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

@lipkau
Copy link
Contributor

lipkau commented Jan 3, 2019

I submitted a PR that should fix this: #61

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants