Skip to content
Snippets Groups Projects
Commit 45084258 authored by David Baumgold's avatar David Baumgold
Browse files

Merge pull request #4341 from edx/db/release-script-always-fetch

Always call `git fetch edx` before finding PR branches
parents 4cb1a510 326ca21d
No related branches found
Tags release-2021-03-23-15.07
No related merge requests found
......@@ -100,8 +100,8 @@ def ensure_pr_fetch():
pr_fetch = '+refs/pull/*/head:refs/remotes/edx/pr/*'
if pr_fetch not in edx_fetches:
git.config("remote.edx.fetch", pr_fetch, add=True)
git.fetch("edx")
modified = True
git.fetch("edx")
return modified
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment