-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Script for cleaning up vendor directory #1888
Conversation
|
||
# Removes unncessary files from the vendor directories | ||
# | ||
# A aist for files to be removed is used instead of excluding files. |
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.
s/aist/list/
@urso Thanks for the review. New version pushed. |
This scripts removes the unnecessary files from the vendor directory. As we check in the vendor directory the goal is to keep the number of files to a minimum and if changes are made to the dependency make sure that it is easy to review the relevant changes.
@urso As discussed, all the other files we should not be deleted are now also excluded by default for *.txt files. |
jenkins, test it |
# Removes unncessary files from the vendor directories | ||
# | ||
# A list for files to be removed is used instead of excluding files. | ||
# The reason is that this that this makes the setup simpler and prevents |
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.
"that this that this"
This scripts removes the unnecessary files from the vendor directory. As we check in the vendor directory the goal is to keep the number of files to a minimum and if changes are made to the dependency make sure that it is easy to review the relevant changes.