Skip to content

Commit

Permalink
fix: Correct arg name suffix
Browse files Browse the repository at this point in the history
An installable unit (IU) is meant here.
  • Loading branch information
jamilraichouni committed Jul 13, 2024
1 parent 59df567 commit 39f1449
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions capella/install_dropins.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def extract_repositories_and_install_ius(dropins: dict[str, t.Any]) -> None:
raise ValueError(f"Unknown plugin type '{dropin['type']}'.")


def install_update_sites(repository: str, install_ui: list[str]) -> None:
def install_update_sites(repository: str, install_iu: list[str]) -> None:
subprocess.run(
[
"/opt/capella/capella",
Expand All @@ -52,7 +52,7 @@ def install_update_sites(repository: str, install_ui: list[str]) -> None:
"-repository",
repository,
"-installIU",
",".join(install_ui),
",".join(install_iu),
],
check=True,
)
Expand Down

0 comments on commit 39f1449

Please sign in to comment.