mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-23 08:41:01 -05:00
10 lines
285 B
TypeScript
10 lines
285 B
TypeScript
|
export function wrapperFilename() {
|
||
|
const isWindows = process.platform === "win32";
|
||
|
return isWindows ? "gradlew.bat" : "gradlew";
|
||
|
}
|
||
|
|
||
|
export function installScriptFilename() {
|
||
|
const isWindows = process.platform === "win32";
|
||
|
return isWindows ? "gradle.bat" : "gradle";
|
||
|
}
|