Skip to content

Commit

Permalink
cli: output message cosmetics in client-install
Browse files Browse the repository at this point in the history
Signed-off-by: Tibor Šimko <tibor.simko@cern.ch>
  • Loading branch information
tiborsimko committed Jun 29, 2020
1 parent 71ff099 commit c4d6464
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reana/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -1657,15 +1657,15 @@ def client_install(): # noqa: D301
"pip install . --upgrade",
]:
run_command(cmd, component)
run_command("pip check")
run_command("pip check", "reana")


@cli.command(name="client-uninstall")
def client_uninstall(): # noqa: D301
"""Uninstall REANA client and its dependencies."""
cmd = "pip uninstall -y " + " ".join(REPO_LIST_CLIENT)
run_command(cmd, "reana")
run_command("pip check")
run_command("pip check", "reana")


@click.option(
Expand Down

0 comments on commit c4d6464

Please sign in to comment.