mirror of
https://github.com/tribufu/tribufu-java
synced 2026-05-06 14:57:27 +00:00
8 lines
215 B
PowerShell
8 lines
215 B
PowerShell
#!/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-0.0.1.jar" -Recurse -Force
|