Fix issue locating wrapper bat on windows

This commit is contained in:
Daz DeBoer
2023-07-16 07:04:38 +02:00
committed by GitHub
parent f59a6d4310
commit a0fdbb009a
3 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ import fs from 'fs'
const IS_WINDOWS = process.platform === 'win32'
export function wrapperScriptFilename(): string {
return IS_WINDOWS ? 'gradlew.bat' : './gradlew'
return IS_WINDOWS ? './gradlew.bat' : './gradlew'
}
export function installScriptFilename(): string {