Skip to content

Commit

Permalink
apt-sync: fix function invocation
Browse files Browse the repository at this point in the history
Signed-off-by: Harry Chen <i@harrychen.xyz>
  • Loading branch information
Harry-Chen committed Dec 3, 2023
1 parent 3719b58 commit 414874c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apt-sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,8 +340,8 @@ def generate_list_for_oses(raw: str, name: str) -> List[List[str]]:
lists = [l] * n_os
return lists

component_lists = generate_list_for_oses(args.component)
arch_lists = generate_list_for_oses(args.arch)
component_lists = generate_list_for_oses(args.component, "component")
arch_lists = generate_list_for_oses(args.arch, "arch")

args.working_dir.mkdir(parents=True, exist_ok=True)
failed = []
Expand Down

0 comments on commit 414874c

Please sign in to comment.