From 08e16c1cabf38f9b65bbb9001a86d75b7eef1f21 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Sat, 21 Oct 2023 05:51:34 -0400 Subject: [PATCH] Fix path correction in OpenDreamInstaller --- .../Components/Engine/OpenDreamInstaller.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Tgstation.Server.Host/Components/Engine/OpenDreamInstaller.cs b/src/Tgstation.Server.Host/Components/Engine/OpenDreamInstaller.cs index 6aa5e728fb..a1bda4f50b 100644 --- a/src/Tgstation.Server.Host/Components/Engine/OpenDreamInstaller.cs +++ b/src/Tgstation.Server.Host/Components/Engine/OpenDreamInstaller.cs @@ -186,7 +186,7 @@ namespace Tgstation.Server.Host.Components.Engine dirPath, IOManager.ConcatPath( sourcePath, - IOManager.GetFileName(sourcePath)), + IOManager.GetFileName(dirPath)), cancellationToken)); var filesMoveTask = filesTask .Result @@ -195,7 +195,7 @@ namespace Tgstation.Server.Host.Components.Engine filePath, IOManager.ConcatPath( sourcePath, - IOManager.GetFileName(sourcePath)), + IOManager.GetFileName(filePath)), cancellationToken)); await Task.WhenAll(dirsMoveTasks.Concat(filesMoveTask));