Kaynağa Gözat

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

Ignore empty `.ruby-version` files
pull/1133/head
Mislav Marohnić 6 yıl önce
işlemeyi yapan: GitHub
ebeveyn
işleme
c8ba27fd07
Veri tabanında bu imza için bilinen anahtar bulunamadı GPG Anahtar Kimliği: 4AEE18F83AFDEB23
3 değiştirilmiş dosya ile 3 ekleme ve 3 silme
  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 Dosyayı Görüntüle

@ -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 Dosyayı Görüntüle

@ -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 Dosyayı Görüntüle

@ -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"
}

Yükleniyor…
İptal
Kaydet