4 lines
218 B
PowerShell
4 lines
218 B
PowerShell
New-Item -Path .\plugins -ItemType Directory -Force
|
|
write-Output "Attempting to copy plugin jar to plugins folder..."
|
|
copy-Item -Path "..\target\IslandSurvivalCraft*.jar" -Destination "plugins\IslandSurvivalCraft.jar"
|