mirror of
https://github.com/gradle/gradle-build-action.git
synced 2025-06-08 09:16:11 +02:00
Initial impl
This commit is contained in:
parent
f4a8f7a81b
commit
bc921df1ec
11 changed files with 1296 additions and 1055 deletions
9
src/gradlew.ts
Normal file
9
src/gradlew.ts
Normal file
|
@ -0,0 +1,9 @@
|
|||
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";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue