Remove 'gradle-executable' input param

This commit is contained in:
daz
2024-01-04 13:21:21 -07:00
parent 4dda5928c7
commit 3a75647ad4
9 changed files with 8 additions and 44 deletions

View File

@@ -28,7 +28,7 @@ function validateGradleWrapper(buildRootDirectory: string): void {
function verifyExists(file: string, description: string): void {
if (!fs.existsSync(file)) {
throw new Error(
`Cannot locate ${description} at '${file}'. Specify 'gradle-version' or 'gradle-executable' for projects without Gradle wrapper configured.`
`Cannot locate ${description} at '${file}'. Specify 'gradle-version' for projects without Gradle wrapper configured.`
)
}
}