Skip to content

Commit

Permalink
Fixed project path duplicating if there's spaces. (#362)
Browse files Browse the repository at this point in the history
I just added double quote on the directory, so the spaces would still be a valid path.
  • Loading branch information
Terria-K authored Dec 5, 2023
1 parent 320d1ba commit e8f4a5d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Draco.Compiler.Tasks/DracoCompiler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ public sealed class DracoCompiler : ToolTask

protected override string GenerateResponseFileCommands()
{
this.ProjectDirectory = "\"" + this.ProjectDirectory + "\"";
var sb = new StringBuilder($"compile");
sb.AppendLine();

Expand Down

0 comments on commit e8f4a5d

Please sign in to comment.