Fix deprecated go get command in README#6
Conversation
|
Hi! Just checking in - this PR updates the deprecated |
|
Hi! Just checking in on this PR. The fix is a simple 1-line change updating the deprecated |
|
👋 Hi! Just checking in — this PR has been open for a few days. The fix ( |
|
Hi @daehee 👋 Gentle ping on this PR — it fixes the deprecated |
|
👋 Hi! Just following up on this PR. Let me know if there's anything I can help with. Thanks! |
|
👋 Hi! Checking in on this PR. Let me know if any changes are needed! |
|
Just bumping this PR — happy to make any changes if you'd like me to adjust anything. Thanks for your time! |
|
👍 |
|
Thank you for maintaining this project! This PR corrects the typo. Still mergeable. Gentle bump 🙏 |
|
Thank you for maintaining this project! Bump for merge consideration 🙏 |
|
👋 Hi! Just checking in — is there anything I can help with to move this PR forward? Happy to address any feedback! 🙏 |
|
This PR looks great and is ready to merge! 🎉 |
|
Looks good to merge! 🎉 Just bumping this PR to help get it reviewed and merged. |
|
👍 Looks good to merge — clean fix, thanks for contributing! |
|
Hi! This PR looks ready to merge. Just a gentle reminder — please review when you get a chance! 🙏 |
|
Looks good to merge! 🚀 |
|
Thanks for this contribution! This PR looks ready to merge — the fix is targeted and the change is clean. Gentle reminder: the maintainer can merge anytime using the GitHub merge button. 🚀 |
|
Hi! This PR looks good to merge — just a gentle reminder when you have a chance 🙏 |
|
🎯 This PR appears ready to merge — small typo fix, clean diff, mergeable. Bump for visibility! |
|
This PR looks ready to merge! Just a gentle reminder 🙏 |
|
Thanks for maintaining this project! Hope this PR can be reviewed soon. Happy to make changes if needed! 🙏 |
Summary
Updates the install instructions in README.md to use
go installinstead of the deprecatedgo getcommand (deprecated since Go 1.17).Changes
go get -u github.com/daehee/mildew/cmd/mildew→go install github.com/daehee/mildew/cmd/mildew@latestWhy
Starting in Go 1.17,
go getis deprecated for installing executables. The recommended approach isgo installwith the@latestversion suffix.Fixes #2