瀏覽代碼

Merge pull request #1069 from viclim/fix-issue-1065

Ignore empty `.ruby-version` files
pull/1133/head
Mislav Marohnić 6 年之前
committed by GitHub
父節點
當前提交
c8ba27fd07
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: 4AEE18F83AFDEB23
共有 3 個檔案被更改,包括 3 行新增3 行删除
  1. +1
    -1
      libexec/rbenv-version-file
  2. +1
    -1
      test/version-file.bats
  3. +1
    -1
      test/version-origin.bats

+ 1
- 1
libexec/rbenv-version-file 查看文件

@ -9,7 +9,7 @@ target_dir="$1"
find_local_version_file() {
local root="$1"
while ! [[ "$root" =~ ^//[^/]*$ ]]; do
if [ -f "${root}/.ruby-version" ]; then
if [ -s "${root}/.ruby-version" ]; then
echo "${root}/.ruby-version"
return 0
fi

+ 1
- 1
test/version-file.bats 查看文件

@ -9,7 +9,7 @@ setup() {
create_file() {
mkdir -p "$(dirname "$1")"
touch "$1"
echo "system" > "$1"
}
@test "detects global 'version' file" {

+ 1
- 1
test/version-origin.bats 查看文件

@ -26,7 +26,7 @@ setup() {
}
@test "detects local file" {
touch .ruby-version
echo "system" > .ruby-version
run rbenv-version-origin
assert_success "${PWD}/.ruby-version"
}

Loading…
取消
儲存