mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-23 08:41:01 -05:00
13 lines
445 B
JavaScript
13 lines
445 B
JavaScript
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
function wrapperFilename() {
|
||
|
const isWindows = process.platform === "win32";
|
||
|
return isWindows ? "gradlew.bat" : "gradlew";
|
||
|
}
|
||
|
exports.wrapperFilename = wrapperFilename;
|
||
|
function installScriptFilename() {
|
||
|
const isWindows = process.platform === "win32";
|
||
|
return isWindows ? "gradle.bat" : "gradle";
|
||
|
}
|
||
|
exports.installScriptFilename = installScriptFilename;
|