Skip to content

Commit

Permalink
Fixed Aspire Console Output
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib committed Mar 20, 2024
1 parent a1955f2 commit 1ab3490
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ private static void ExportSubgraphSchemaDocs(IReadOnlyList<GatewayInfo> gateways
continue;
}

Console.WriteLine("Expoorting schema document for subgraph {0} ...", subgraph.Name);
Console.WriteLine("Exporting schema document for subgraph {0} ...", subgraph.Name);

var workingDirectory = System.IO.Path.GetDirectoryName(subgraph.Path)!;

Expand Down Expand Up @@ -64,7 +64,7 @@ private static void ExportSubgraphSchemaDocs(IReadOnlyList<GatewayInfo> gateways
if (process.ExitCode != 0)
{
Console.WriteLine(
"{0}(1,1): error HF1002: ; Failed to export schema document for subgraph {1} ...",
"{0}(1,1): error HF1002: Failed to export schema document for subgraph {1} ...",
subgraph.Path,
subgraph.Name);
Environment.Exit(-255);
Expand Down

0 comments on commit 1ab3490

Please sign in to comment.