Skip to content

Commit

Permalink
Try debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
masa-iwasaki committed Nov 1, 2019
1 parent e8df8bf commit 10c2e03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/setup-ruby.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ function run() {
return __awaiter(this, void 0, void 0, function* () {
try {
let version = core.getInput('version');
console.log(`version: ${version}`);
if (!version) {
version = core.getInput('ruby-version');
}
Expand Down
1 change: 1 addition & 0 deletions src/setup-ruby.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import {findRubyVersion} from './installer';
async function run() {
try {
let version = core.getInput('version');
console.log(`version: ${version}`);
if (!version) {
version = core.getInput('ruby-version');
}
Expand Down

0 comments on commit 10c2e03

Please sign in to comment.