From 6e01133a90832464fbd346b9a92abc9f1d4c33ce Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Tue, 5 Dec 2017 15:18:52 -0500 Subject: [PATCH] Fixes rare compiler failure --- TGS.Server/Instance/Compiler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TGS.Server/Instance/Compiler.cs b/TGS.Server/Instance/Compiler.cs index 4d11862f1a..9e8d87814d 100644 --- a/TGS.Server/Instance/Compiler.cs +++ b/TGS.Server/Instance/Compiler.cs @@ -268,7 +268,7 @@ namespace TGS.Server { //This means there is a staged update waiting to be applied, we have to unstage it before we can work Directory.Delete(RelativePath(GameDirLive)); - CreateSymlink(RelativePath(GameDirLive), TheDir); + CreateSymlink(RelativePath(GameDirLive), RelativePath(TheDir)); return RelativePath(InvertDirectory(TheDir)); } }