Skip to content

Commit

Permalink
feat(core): inform users about push in renku save (#3194)
Browse files Browse the repository at this point in the history
  • Loading branch information
Panaetius committed Nov 24, 2022
1 parent bb50f86 commit 2f7f936
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions renku/ui/cli/save.py
Expand Up @@ -119,8 +119,9 @@ def save(message, destination, paths):
)

if saved_paths:
click.echo("Successfully saved to remote branch {}: \n\t{}".format(branch, "\n\t".join(saved_paths)))
paths_str = "\n\t".join(saved_paths)
click.echo(f"Successfully saved to remote branch {branch}: \n\t{paths_str}")
else:
click.echo("There were no changes to save.")
click.echo(f"Successfully saved to remote branch {branch}.")

click.secho("OK", fg=color.GREEN)

0 comments on commit 2f7f936

Please sign in to comment.