mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-11-23 18:24:13 +08:00
bin/ci: fix mistakenly hardcoded repo name in get_gitlab_project()
It didn't matter so far because all callers always pass "mesa". Signed-off-by: Eric Engestrom <eric@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23223>
This commit is contained in:
parent
6801de5170
commit
51482b2c6a
@ -16,7 +16,7 @@ def get_gitlab_project(glab, name: str):
|
||||
"""Finds a specified gitlab project for given user"""
|
||||
glab.auth()
|
||||
username = glab.user.username
|
||||
return glab.projects.get(f"{username}/mesa")
|
||||
return glab.projects.get(f"{username}/{name}")
|
||||
|
||||
|
||||
def read_token(token_arg: Optional[str]) -> str:
|
||||
|
Loading…
Reference in New Issue
Block a user