Skip to content

Commit

Permalink
chore: more exit code information on pip
Browse files Browse the repository at this point in the history
Allows more verbose diagnostics.
  • Loading branch information
joamag committed May 8, 2024
1 parent 6ae8cc3 commit fe89420
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/appier/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ def install_pip(package, delayed=False, isolated=True, user=None):
result = pip_main(args)
if result == 0:
return
raise exceptions.OperationalError(message="pip error")
raise exceptions.OperationalError(message="pip error, exit code (%d)" % result)


def install_pip_s(package, delayed=False):
Expand Down

0 comments on commit fe89420

Please sign in to comment.