Add missing break statement.

This commit is contained in:
Fabio Niephaus 2023-06-19 11:11:08 +02:00
parent 04ca584c1b
commit 91fd4d0716
No known key found for this signature in database
GPG Key ID: F21CF5275F31DFD6
2 changed files with 2 additions and 0 deletions

1
dist/main/index.js generated vendored
View File

@ -71158,6 +71158,7 @@ function run() {
core.info(`This build is using the new Oracle GraalVM. To select a specific distribution, use the 'distribution' option (see https://github.com/graalvm/setup-graalvm/tree/main#options).`);
graalVMHome = yield graalvm.setUpGraalVMJDK(javaVersion);
}
break;
default:
throw new Error(`Unsupported distribution: ${distribution}`);
}

View File

@ -66,6 +66,7 @@ async function run(): Promise<void> {
)
graalVMHome = await graalvm.setUpGraalVMJDK(javaVersion)
}
break
default:
throw new Error(`Unsupported distribution: ${distribution}`)
}