Skip to content

Commit

Permalink
Merge pull request #303 from DSD-DBS/fix-installable-unit-typo
Browse files Browse the repository at this point in the history
fix: Correct arg name suffix
  • Loading branch information
MoritzWeber0 authored Jul 15, 2024
2 parents 59df567 + 39f1449 commit df2d5b1
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 df2d5b1

Please sign in to comment.