Fix CopyFiles not working on Linux

This commit is contained in:
2022-07-08 01:41:26 +03:00
parent 5e6fcc9669
commit 44d1527759

View File

@@ -87,7 +87,7 @@ namespace Flax.Build.Graph
else else
{ {
task.CommandPath = "cp"; task.CommandPath = "cp";
task.CommandArguments = string.Format("\'{0}\' \'{1}\'", srcFile, outputPath); task.CommandArguments = string.Format("\"{0}\" \"{1}\"", srcFile, outputPath);
} }
Tasks.Add(task); Tasks.Add(task);