mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-22 00:01:05 -05:00
Add missing await
This commit is contained in:
parent
c5e1979a6b
commit
15e064da79
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ async function resolveGradleExecutable(baseDirectory: string): Promise<string> {
|
|||
|
||||
const gradleVersion = inputOrNull("gradle-version");
|
||||
if (gradleVersion != null) {
|
||||
return path.resolve(provision.gradleVersion(gradleVersion))
|
||||
return path.resolve(await provision.gradleVersion(gradleVersion))
|
||||
}
|
||||
|
||||
const gradleExecutable = inputOrNull("gradle-executable");
|
||||
|
|
Loading…
Reference in a new issue