Create Package.ps1

This commit is contained in:
GuilhermeWerner 2021-04-17 09:23:44 -03:00
parent c2c0e18986
commit 3973975dc6

8
Scripts/Package.ps1 Normal file
View file

@ -0,0 +1,8 @@
#!/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