Skip to content

Commit becfb83

Browse files
committed
do write installed-files.txt if using install --egg
1 parent 66ff8e0 commit becfb83

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pip/req.py

+5
Original file line numberDiff line numberDiff line change
@@ -589,6 +589,11 @@ def install(self, install_options, global_options=()):
589589
logger.notify('Record file %s not found' % record_filename)
590590
return
591591
self.install_succeeded = True
592+
if self.as_egg:
593+
# there's no --always-unzip option we can pass to install command
594+
# so we unable to save the installed-files.txt
595+
return
596+
592597
f = open(record_filename)
593598
for line in f:
594599
line = line.strip()

0 commit comments

Comments
 (0)