Skip to content

Commit

Permalink
Cleanup any dot notation within the output and intermediate paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomspilman committed Aug 9, 2013
1 parent d1d26f8 commit 9e6df0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tools/MGCB/BuildContent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ public bool HasWork
public void Build(out int successCount, out int errorCount)
{
var projectDirectory = Directory.GetCurrentDirectory();
var outputPath = Path.Combine(projectDirectory, OutputDir);
var intermediatePath = Path.Combine(projectDirectory, IntermediateDir);
var outputPath = Path.GetFullPath(Path.Combine(projectDirectory, OutputDir));
var intermediatePath = Path.GetFullPath(Path.Combine(projectDirectory, IntermediateDir));
_manager = new PipelineManager(projectDirectory, outputPath, intermediatePath);

// Feed all the assembly references to the pipeline manager
Expand Down

0 comments on commit 9e6df0e

Please sign in to comment.