fix path quotes in shadercompiler
continuous-integration/drone/push Build is passing Details

pull/48/head
cosmonaut 2024-01-11 16:26:08 -08:00
parent fa92e9e08a
commit b72b0b5fde
1 changed files with 2 additions and 2 deletions

View File

@ -238,7 +238,7 @@ partial class Program
{
Process glslc = Process.Start(
"glslc",
$"""{glslPath}"" -o ""{outputPath}"""
$"\"{glslPath}\" -o \"{outputPath}\""
);
glslc.WaitForExit();
if (glslc.ExitCode != 0)
@ -254,7 +254,7 @@ partial class Program
{
Process spirvcross = Process.Start(
"spirv-cross",
$"""{spirvPath}"" --hlsl --shader-model 50 --output ""{outputPath}"""
$"\"{spirvPath}\" --hlsl --shader-model 50 --output \"{outputPath}\""
);
spirvcross.WaitForExit();
if (spirvcross.ExitCode != 0)