From 1416f1817f3a2f7c96e837919a8f95ea7b68900e Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Sun, 15 Oct 2023 00:00:06 -0400 Subject: [PATCH] Quote .dme path in OD compiler command line --- .../Components/Engine/OpenDreamInstallation.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Host/Components/Engine/OpenDreamInstallation.cs b/src/Tgstation.Server.Host/Components/Engine/OpenDreamInstallation.cs index fc0e388366..12c0915402 100644 --- a/src/Tgstation.Server.Host/Components/Engine/OpenDreamInstallation.cs +++ b/src/Tgstation.Server.Host/Components/Engine/OpenDreamInstallation.cs @@ -89,6 +89,6 @@ namespace Tgstation.Server.Host.Components.Engine /// public string FormatCompilerArguments(string dmePath) - => $"--suppress-unimplemented --notices-enabled {dmePath ?? throw new ArgumentNullException(nameof(dmePath))}"; + => $"--suppress-unimplemented --notices-enabled \"{dmePath ?? throw new ArgumentNullException(nameof(dmePath))}\""; } }