Skip to content

Commit 00213bd

Browse files
committed
WIP
1 parent 1c772e6 commit 00213bd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36010,9 +36010,9 @@ function getRubyVersion(path) {
3601036010
let ruby = rubySection.ruby
3601136011

3601236012
if (typeof ruby === 'object') {
36013-
rubyVersion = ruby.version
36013+
var rubyVersion = ruby.version
3601436014
} else {
36015-
rubyVersion = ruby
36015+
var rubyVersion = ruby
3601636016
}
3601736017

3601836018
if (!rubyVersion) { return }

src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ export function getRubyVersion(path) {
2929
let ruby = rubySection.ruby
3030

3131
if (typeof ruby === 'object') {
32-
rubyVersion = ruby.version
32+
var rubyVersion = ruby.version
3333
} else {
34-
rubyVersion = ruby
34+
var rubyVersion = ruby
3535
}
3636

3737
if (!rubyVersion) { return }

0 commit comments

Comments
 (0)