Skip to content

Commit

Permalink
Merge pull request #6863 from Jjagg/external-tool-fix
Browse files Browse the repository at this point in the history
Fix path to ExternalTool for content pipeline on .NET Core
  • Loading branch information
harry-cpp committed Aug 17, 2019
2 parents 5f6a01a + 31404a9 commit 2c4bace
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MonoGame.Framework.Content.Pipeline/ExternalTool.cs
Expand Up @@ -168,7 +168,7 @@ private static void EnsureExecutable(string path)

try
{
var p = Process.Start("chmod", "u+x '" + path + "'");
var p = Process.Start("chmod", "u+x \"" + path + "\"");
p.WaitForExit();
}
catch
Expand Down

0 comments on commit 2c4bace

Please sign in to comment.