mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
build_manifest.py: Remove an unnecessary if branch
I can't think of a scenario where this would be hit, and can't trigger make the find_reposiroty_sha function return None either.
This commit is contained in:
parent
64c0e6fba3
commit
490e936dd1
1 changed files with 0 additions and 3 deletions
|
@ -204,9 +204,6 @@ if __name__ == "__main__":
|
|||
for module in GSTREAMER_MODULES:
|
||||
print(f"Checking {module}:", end=' ')
|
||||
remote, revision = find_repository_sha(module, CURRENT_BRANCH)
|
||||
|
||||
if not revision:
|
||||
revision = 'master'
|
||||
projects += project_template.format(module, remote, revision)
|
||||
|
||||
with open('manifest.xml', mode='w') as manifest:
|
||||
|
|
Loading…
Reference in a new issue