Skip to content

Commit

Permalink
Fixed paths on builder.
Browse files Browse the repository at this point in the history
  • Loading branch information
jp2masa committed Mar 30, 2018
1 parent 430a7e0 commit baba3cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/Cosmos.Build.Builder/CosmosTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ private void LaunchVS() {
}

Logger.LogMessage("Launching Visual Studio");
Start(xVisualStudio, Quoted(mCosmosPath + @"Kernel.sln"), false, true);
Start(xVisualStudio, Quoted(Path.Combine(mCosmosPath, "Kernel.sln")), false, true);
}

private void RunSetup() {
Expand All @@ -435,7 +435,7 @@ private void RunSetup() {

string setupName = GetSetupName(mReleaseNo);

Start(mCosmosPath + @"Setup\Output\" + setupName + ".exe", @"/SILENT");
Start(Path.Combine(mCosmosPath, "Setup", "Output", setupName + ".exe"), @"/SILENT");
}

private void Done() {
Expand Down

0 comments on commit baba3cb

Please sign in to comment.