Skip to content

Commit

Permalink
pip-compile quiet with empty changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tonal authored Feb 22, 2019
1 parent 6d871f2 commit c2c0034
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion piptools/sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,9 @@ def sync(to_install, to_uninstall, verbose=False, dry_run=False, pip_flags=None,
Install and uninstalls the given sets of modules.
"""
if not to_uninstall and not to_install:
click.echo("Everything up-to-date")
if not verbose:
click.echo("Everything up-to-date")
return 0

if pip_flags is None:
pip_flags = []
Expand Down

0 comments on commit c2c0034

Please sign in to comment.