From 8fd4041b3c673549c66dfea4dfc7a1ba7c7932f0 Mon Sep 17 00:00:00 2001 From: xSprite Date: Thu, 16 May 2019 12:06:03 +0200 Subject: [PATCH] Fix paths in moveItems.ps1 --- ReallifeGamemode.Server/Scripts/moveItems.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ReallifeGamemode.Server/Scripts/moveItems.ps1 b/ReallifeGamemode.Server/Scripts/moveItems.ps1 index 4f769adf..78f828b2 100644 --- a/ReallifeGamemode.Server/Scripts/moveItems.ps1 +++ b/ReallifeGamemode.Server/Scripts/moveItems.ps1 @@ -26,7 +26,7 @@ if(!(Test-Path $outputPath)) # Wenn NEIN => erstellen if(!(Test-Path $resourcePath)) { - Write-Host "Creating 'copsandrobbers' resources directory" + Write-Host "Creating 'reallife-gamemode' resources directory" New-Item -ItemType Directory -Path $resourcePath | Out-Null } @@ -35,4 +35,4 @@ Copy-Item "$outputPath\$outFile" "$resourcePath\" -Force Copy-Item "$outputPath\meta.xml" "$resourcePath\" -Force # Abhaengige DLLs in runtime Ordner verschieben -Copy-Item "$outputPath\*.dll" "$runtimePath\" -Exclude "CopsAndRobbers.Server.dll" \ No newline at end of file +Copy-Item "$outputPath\*.dll" "$runtimePath\" -Exclude "ReallifeGamemode.Server.dll" \ No newline at end of file