obs: checkout_for_feed + fetch: fix for 2022q1 etc

As Neels pointed out, with the current code the 2022q1 and similar feeds
do not get checked out properly if:
* the repository was not freshly cloned (like jenkins would do)
* the repository was fetched (--git-fetch)

Instead of the last revision of that branch from origin, we get the
revision that was previously checked out on the branch. Fix this by
prepending origin/.

Change-Id: I2e265fc84abd4596c386bb56cbabb2af121dc7ca
This commit is contained in:
Oliver Smith 2022-08-17 15:55:06 +02:00 committed by osmith
parent dbd1e02ca3
commit 3a41a4c1b8
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ def checkout_for_feed(project, feed, branch=None):
elif feed == "nightly":
lib.git.checkout_default_branch(project)
else: # 2022q1 etc
lib.git.checkout(project, feed)
lib.git.checkout(project, f"origin/{feed}")
def get_git_version_gen_path(project):