mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
Merge pull request #1069 from viclim/fix-issue-1065
Ignore empty `.ruby-version` files
This commit is contained in:
commit
c8ba27fd07
3 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -9,7 +9,7 @@ setup() {
|
|||
|
||||
create_file() {
|
||||
mkdir -p "$(dirname "$1")"
|
||||
touch "$1"
|
||||
echo "system" > "$1"
|
||||
}
|
||||
|
||||
@test "detects global 'version' file" {
|
||||
|
|
|
@ -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…
Reference in a new issue