4 lines
281 B
PowerShell
4 lines
281 B
PowerShell
write-Output "Attempting to delete previous world..."
|
|
remove-Item -Recurse world -Force -ErrorAction Ignore
|
|
write-Output "Attempting to copy plugin jar to plugins folder"
|
|
copy-Item -Path "..\target\IslandSurvivalCraft-1.0.0.jar" -Destination "plugins\IslandSurvivalCraft-1.0.0.jar" |