-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
cargo vendor
: Don't delete hidden top-level files.
#7242
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
@bors: r+ |
📌 Commit 492abb3 has been approved by |
⌛ Testing commit 492abb3 with merge 628710e1b668e5dd9399633c443f99127b1a0f7e... |
💥 Test timed out |
@bors retry |
⌛ Testing commit 492abb3 with merge c34d27b60a396ff6368d78f6fe2955f6e314b76d... |
💔 Test failed - checks-azure |
@bors retry |
`cargo vendor`: Don't delete hidden top-level files. `cargo vendor` (without `--no-delete`) will delete all files in the `vendor/` directory when it starts. This changes it so that it will skip any entries starting with a dot. This allows one to track the vendor directory with a source control system like git. Closes #7109 (Note: two commits, one is a test change.)
☀️ Test successful - checks-azure |
cargo vendor
(without--no-delete
) will delete all files in thevendor/
directory when it starts. This changes it so that it will skip any entries starting with a dot. This allows one to track the vendor directory with a source control system like git.Closes #7109
(Note: two commits, one is a test change.)