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

Handle stale bin/ dirs in repos #80

Assignees

Comments

@roehrich-hpe
Copy link
Contributor

The bin/ dir in each repo is created and populated by the Makefile to contain the tools specified in the makefile. When we bump the version of one of those tools, we need a way for the Makefile to notice that an existing bin/ dir has an older version of the tool, and to update that tool.

@roehrich-hpe
Copy link
Contributor Author

Until we can do it automatically, the way to handle stale bin dirs is to do the following in each repo:

chmod -R u+w bin
rm -rf bin

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment