We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dad12fe commit 9877756Copy full SHA for 9877756
common.js
@@ -7,7 +7,6 @@ const crypto = require('crypto')
7
const core = require('@actions/core')
8
const tc = require('@actions/tool-cache')
9
const exec = require('@actions/exec')
10
-const common = require('./common')
11
const { performance } = require('perf_hooks')
12
const linuxOSInfo = require('linux-os-info')
13
@@ -407,7 +406,7 @@ export function setupPath(newPathEntries) {
407
406
}
408
409
export async function setupJavaHome() {
410
- common.measure("Modifying JAVA_HOME for JRuby", async () => {
+ await measure("Modifying JAVA_HOME for JRuby", async () => {
411
console.log("attempting to run with existing JAVA_HOME")
412
413
let ret = await exec.exec('ruby', ['--version'])
0 commit comments