소스 검색

Exit with 0 status when a version file is read successfully

pull/360/head^2
Sam Stephenson 15 년 전
부모
커밋
e5c0fd22e1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      libexec/rbenv-version-file-read

+ 1
- 1
libexec/rbenv-version-file-read 파일 보기

@ -10,7 +10,7 @@ if [ -e "$VERSION_FILE" ]; then
version="${words[0]}"
if [ -n "$version" ]; then
echo "$version"
break
exit
fi
done < <( cat "$VERSION_FILE" && echo )
fi

불러오는 중...
취소
저장