Skip to content

Commit

Permalink
fix run command returning only rc
Browse files Browse the repository at this point in the history
  • Loading branch information
msarahan committed Dec 19, 2019
1 parent cbde73f commit c7d5ada
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conda/cli/main_run.py
Expand Up @@ -39,4 +39,4 @@ def execute(args, parser):
print(response.stdout, file=sys.stdout)
if response.stderr:
print(response.stderr, file=sys.stderr)
return response.rc
return response

1 comment on commit c7d5ada

@mlline00
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Appears this change is root cause for #9599. Details on that issue.

Please sign in to comment.