diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2015-12-24 10:39:57 -0500 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-12-24 10:39:57 -0500 |
| commit | 7d65536193bd28184d21165b933e1088fbaddff8 (patch) | |
| tree | 3325dc0ae7ffaf04849d5c4c3d1b91e804990850 /Makefile | |
| parent | 6f6025d2e5c4dc01c6d45d3bf220760e4d72b36b (diff) | |
| download | python-coveragepy-7d65536193bd28184d21165b933e1088fbaddff8.tar.gz | |
Fix kit_local, pip config changed?
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -61,7 +61,10 @@ kit_upload: twine upload dist/* kit_local: - cp -v dist/* `awk -F "=" '/find-links/ {print $$2}' ~/.pip/pip.conf` + # pip.conf looks like this: + # [global] + # find-links = file:///Users/ned/Downloads/local_pypi + cp -v dist/* `awk -F "//" '/find-links/ {print $$2}' ~/.pip/pip.conf` # pip caches wheels of things it has installed. Clean them out so we # don't go crazy trying to figure out why our new code isn't installing. find ~/Library/Caches/pip/wheels -name 'coverage-*' -delete |
