이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
도움말
로그인
isprogram
/
pyenv
의 미러
https://github.com/pyenv/pyenv.git
보기
1
좋아요
0
포크
0
코드
이슈
0
Projects
0
릴리즈
241
위키
활동
소스 검색
Merge pull request
#230
from blueyed/version-file-write-no-rm
pyenv-version-file-write: do not use rm, but clobber the file
pull/236/head
Yamashita, Yuu
12 년 전
부모
2297bd3741
b6aef96cea
커밋
9b8b9c5205
1개의 변경된 파일
과
2개의 추가작업
그리고
1개의 파일을 삭제
분할 보기
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
libexec/pyenv-version-file-write
+ 2
- 1
libexec/pyenv-version-file-write
파일 보기
@ -17,7 +17,8 @@ fi
pyenv-prefix "${versions[@]}" >/dev/null
# Write the version out to disk.
rm -f "$PYENV_VERSION_FILE"
# Create an empty file. Using "rm" might cause a permission error.
> "$PYENV_VERSION_FILE"
for version in "${versions[@]}"; do
echo "$version" >> "$PYENV_VERSION_FILE"
done
쓰기
미리보기
불러오는 중...
취소
저장