-
Notifications
You must be signed in to change notification settings - Fork 363
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
chore: make clean should clean tools/bin #2945
Conversation
Signed-off-by: zirain <zirain2009@gmail.com>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2945 +/- ##
==========================================
- Coverage 64.59% 64.57% -0.02%
==========================================
Files 122 122
Lines 21115 21115
==========================================
- Hits 13640 13636 -4
- Misses 6629 6632 +3
- Partials 846 847 +1 ☔ View full report in Codecov by Sentry. |
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.
lets add a tools.clean
and add this rm
under it, with the definition living under
https://github.com/envoyproxy/gateway/blob/main/tools/make/tools.mk
rm -rf $(tools.bindir) | ||
|
||
.PHONY: clean | ||
clean: ## Remove all files that are created during builds. |
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.
umm there's already a clean
target under go.mk
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.
there's another one in docs.mk
, just follow the old way.
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.
ah so make clean
will call all of them ?
No description provided.