Skip to content

Commit aee66c6

Browse files
committed
fixup! use click.echo > stderr
1 parent d476048 commit aee66c6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pipenv/core.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2304,7 +2304,8 @@ def do_run(command, args, three=None, python=False, pypi_mirror=None):
23042304
try:
23052305
script = project.build_script(command, args)
23062306
cmd_string = ' '.join([script.command] + script.args)
2307-
logging.getLogger("pip").info("Run: '{0}'".format(cmd_string))
2307+
if environments.is_verbose():
2308+
click.echo(crayons.normal("Run: {0}".format(cmd_string)), err=True)
23082309
except ScriptEmptyError:
23092310
click.echo("Can't run script {0!r}-it's empty?", err=True)
23102311
if os.name == "nt":

0 commit comments

Comments
 (0)