1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

set nonzero exit code on failure (fixes #33)

This commit is contained in:
Carl Meyer 2009-12-04 13:43:31 -05:00
parent 148ff3a8ed
commit 143851bae5

View file

@ -1,3 +1,3 @@
#!/usr/bin/env python
import pip
pip.main()
import pip, sys
sys.exit(pip.main())