Skip to content

Commit a8e3afe

Browse files
authored
Rollup merge of #88699 - Mark-Simulacrum:fixes-cherry-picker, 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```
2 parents bb5ca58 + 76e09eb commit a8e3afe

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/ci/scripts/verify-backported-commits.sh

-8
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,6 @@ verify_backported_commits_main() {
1818
exit 0
1919
fi
2020

21-
echo 'git: unshallowing the repository so we can check commits'
22-
git fetch \
23-
--no-tags \
24-
--no-recurse-submodules \
25-
--progress \
26-
--prune \
27-
--unshallow
28-
2921
if [[ $ci_base_branch == "beta" ]]; then
3022
verify_cherries master "$BETA_LIMIT" \
3123
|| exit 1

0 commit comments

Comments
 (0)