mirror of
https://github.com/Tribufu/TribufuJava
synced 2026-08-07 20:06:23 +00:00
8 lines
209 B
PowerShell
Executable file
8 lines
209 B
PowerShell
Executable file
#!/usr/bin/env pwsh
|
|
|
|
./gradlew build
|
|
./gradlew jar
|
|
|
|
New-Item -Path "./Release" -ItemType Directory -Force
|
|
|
|
Copy-Item -Path "./lib/build/libs/lib-0.0.1.jar" -Destination "./Release/TribuFu.jar" -Recurse -Force
|