mirror of
https://github.com/gradle/actions.git
synced 2025-04-19 17:29:20 +08:00
Fix minor typo in log message
This commit is contained in:
parent
74f9fa840c
commit
24aa9155d9
@ -88,7 +88,7 @@ async function gradleReleaseNightly(): Promise<GradleVersionInfo> {
|
|||||||
async function gradleRelease(version: string): Promise<GradleVersionInfo> {
|
async function gradleRelease(version: string): Promise<GradleVersionInfo> {
|
||||||
const versionInfo = await findGradleVersionDeclaration(version)
|
const versionInfo = await findGradleVersionDeclaration(version)
|
||||||
if (!versionInfo) {
|
if (!versionInfo) {
|
||||||
throw new Error(`Gradle version ${version} does not exists`)
|
throw new Error(`Gradle version ${version} does not exist`)
|
||||||
}
|
}
|
||||||
return versionInfo
|
return versionInfo
|
||||||
}
|
}
|
||||||
|
@ -10,7 +10,7 @@ fs.rmSync(testTmp, {recursive: true, force: true})
|
|||||||
|
|
||||||
describe("--info and --stacktrace", () => {
|
describe("--info and --stacktrace", () => {
|
||||||
describe("will be created", () => {
|
describe("will be created", () => {
|
||||||
it("when gradle.properties does not exists", async () => {
|
it("when gradle.properties does not exist", async () => {
|
||||||
const emptyGradleHome = `${testTmp}/empty-gradle-home`
|
const emptyGradleHome = `${testTmp}/empty-gradle-home`
|
||||||
fs.mkdirSync(emptyGradleHome, {recursive: true})
|
fs.mkdirSync(emptyGradleHome, {recursive: true})
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user