이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
도움말
로그인
isprogram
/
pyenv
의 미러
https://github.com/pyenv/pyenv.git
보기
1
좋아요
0
포크
0
코드
이슈
0
Projects
0
릴리즈
240
위키
활동
소스 검색
Merge pull request
#907
from LarsFronius/patch-1
Fixes pip-rehash to rehash if pip was called with a flag
pull/909/head
Yamashita, Yuu
9 년 전
committed by
GitHub
부모
30212f0054
1ec90481e8
커밋
d15f3888f0
1개의 변경된 파일
과
5개의 추가작업
그리고
3개의 파일을 삭제
분할 보기
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-3
pyenv.d/exec/pip-rehash/pip
+ 5
- 3
pyenv.d/exec/pip-rehash/pip
파일 보기
@ -21,9 +21,11 @@ STATUS=0
# Run `pyenv-rehash` after a successful installation.
if [ "$STATUS" == "0" ]; then
case "$1" in
"install" | "uninstall" ) pyenv-rehash;;
esac
for piparg in "$@"; do
case ${piparg} in
"install" | "uninstall" ) pyenv-rehash ; break;;
esac
done
fi
exit "$STATUS"
쓰기
미리보기
불러오는 중...
취소
저장