obs: don't pass meta through functions

Change-Id: Ieb49e5f8630e3e918b11a7a225febbbcee2e82b3
This commit is contained in:
Oliver Smith 2023-03-15 12:50:09 +01:00
parent 372b33a582
commit 78cd3a3c75
1 changed files with 3 additions and 3 deletions

View File

@ -112,12 +112,12 @@ def upload_srcpkg(pkgs_remote, package, version):
lib.osc.update_package(package, version)
def build_srcpkgs(pkgs_remote, packages, meta, skip_up_to_date):
def build_srcpkgs(pkgs_remote, packages, skip_up_to_date):
print()
print("### Building source packages ###")
print()
if meta:
if lib.args.meta:
feed = lib.args.feed
build_srcpkg_if_needed(pkgs_remote, f"osmocom-{feed}",
True, skip_up_to_date)
@ -214,7 +214,7 @@ def main():
pkgs_remote = lib.osc.get_remote_pkgs()
build_srcpkgs(pkgs_remote, packages, args.meta, args.skip_up_to_date)
build_srcpkgs(pkgs_remote, packages, args.skip_up_to_date)
upload_srcpkgs(pkgs_remote)
exit_with_summary()