-
Notifications
You must be signed in to change notification settings - Fork 3
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
Build Errors #2
Comments
That function on line #756 was a new one that I was trying out and it appears the dependent library signature had changed. |
Thank you. Looks like the pty package is not available for Windows. |
Possibly, I think the only issue in Windows is finding the git executable.
I can test that this weekend...
…On Wed, Nov 1, 2017, 5:20 AM Bo Biene ***@***.***> wrote:
Thank you. Looks ly the pty package is not available for Windows.
Is there a chance to get it to work on Windows?
—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub
<#2 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABUsBi-q8K5zzdVIrbEgGgP0BEHUBe2cks5syGIOgaJpZM4QHIyp>
.
|
Great 👍 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
# repo-tool .\repo-tool.go:756:14: ref.IsBranch undefined (type *plumbing.Reference has no field or method IsBranch) .\repo-tool.go:756:30: ref.IsRemote undefined (type *plumbing.Reference has no field or method IsRemote) .\repo-tool.go:756:46: ref.IsTag undefined (type *plumbing.Reference has no field or method IsTag) .\repo-tool.go:951:15: undefined: pty.Start
Seems like it is the line #756:
println(ref.IsBranch(), ref.IsRemote(), ref.IsTag(), ref.String(), "->", ref.Target().String())
and #951:
if f, err := pty.Start(res); err != nil {
Any suggestions?
The text was updated successfully, but these errors were encountered: