gradle-build-action/src/gradlew.ts

12 lines
251 B
TypeScript
Raw Normal View History

2019-09-23 18:10:49 +08:00
const IS_WINDOWS = process.platform === "win32";
export function wrapperFilename(): string {
return IS_WINDOWS ? "gradlew.bat" : "gradlew";
2019-09-21 22:01:53 +08:00
}
2019-09-23 18:10:49 +08:00
export function installScriptFilename(): string {
return IS_WINDOWS ? "gradle.bat" : "gradle";
2019-09-21 22:01:53 +08:00
}