-
Notifications
You must be signed in to change notification settings - Fork 29
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
Fixed stdin to work for windows. Updated GO 1.20 #23
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! I often wondered if everything would work as expected on Windows.
Besides the changes to go.mod
and go.sum
and a minor code detail I think we can merge this right away.
go.mod
Outdated
@@ -1,8 +1,16 @@ | |||
module github.com/abrander/garmin-connect | |||
module github.com/garmin-connect |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks wrong.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ya that is weird i dont know why go did that when i refreshed the go.mod for 1.20
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Figured it out . It was due to my folder structure
|
||
go 1.15 | ||
go 1.20 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is Go 1.20 needed for this fix?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No i was just moving it to 1.20 as there are some tls security fixes so feel free to remove it
Fix password stdin to work on windows and upgraded golang to 1.20