Skip to content

Commit

Permalink
Added extra space before destination prefix args
Browse files Browse the repository at this point in the history
  • Loading branch information
vchelaru committed Jan 18, 2024
1 parent 4f5d54c commit 9bbbd94
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions FRBDK/Glue/Glue/Build/BuildToolAssociation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public string ExampleCommandLine
{
var executable = GetExecutable();
var arguments = GetArguments($"c:\\Input.{SourceFileType}", $"c:\\Output.{DestinationFileType}", null);
return $"{GetExecutable()} {arguments}";
return $"{executable} {arguments}";
}
}

Expand Down Expand Up @@ -196,7 +196,7 @@ private string GetExecutable()

if (!string.IsNullOrEmpty(executable) && FileManager.IsRelative(executable))
{
executable = FileManager.RelativeDirectory + executable;
executable = FileManager.RemoveDotDotSlash( FileManager.RelativeDirectory + executable);
}

return executable;
Expand Down Expand Up @@ -235,7 +235,7 @@ private string GetArgumentsForProcess(string sourceFile, string destinationFile,
{
if (!string.IsNullOrEmpty(DestinationFileArgumentPrefix))
{
arguments += DestinationFileArgumentPrefix + " \"" + destinationFile + "\"";
arguments += " " + DestinationFileArgumentPrefix + " \"" + destinationFile + "\"";
}
else
{
Expand Down

0 comments on commit 9bbbd94

Please sign in to comment.