Skip to content

Commit

Permalink
Rollup merge of rust-lang#88699 - Mark-Simulacrum:fixes-cherry-picker…
Browse files Browse the repository at this point in the history
…, r=pietroalbini

Remove extra unshallow from cherry-pick checker

This is already done by https://github.com/rust-lang/rust/blob/13db8440bbbe42870bc828d4ec3e965b38670277/src/ci/init_repo.sh#L32-L36 on the beta channel, and git throws an error if you attempt to unshallow an already non-shallow repository.

r? `@pietroalbini`
  • Loading branch information
Manishearth authored Sep 12, 2021
2 parents 68bb06a + 76e09eb commit ae14fc4
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/ci/scripts/verify-backported-commits.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,6 @@ verify_backported_commits_main() {
exit 0
fi

echo 'git: unshallowing the repository so we can check commits'
git fetch \
--no-tags \
--no-recurse-submodules \
--progress \
--prune \
--unshallow

if [[ $ci_base_branch == "beta" ]]; then
verify_cherries master "$BETA_LIMIT" \
|| exit 1
Expand Down

0 comments on commit ae14fc4

Please sign in to comment.