Skip to content

Commit

Permalink
fix: Adjust error message on emscripten/ninja failure
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromelaban committed Oct 11, 2022
1 parent 703e5e2 commit 4fa484a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Uno.Wasm.Bootstrap/ShellTask.cs
Expand Up @@ -879,7 +879,7 @@ private void RunPackager()

if (ninjaResult.exitCode != 0)
{
throw new Exception("Failed to generate AOT layout (More details are available in diagnostics mode or using the MSBuild /bl switch)");
throw new Exception("Failed to run emscripten. More details are available in diagnostics logging mode or using the MSBuild /bl switch, see https://aka.platform.uno/msbuild-troubleshoot.");
}

CleanupLinkerRemovedFiles(workAotPath);
Expand Down

0 comments on commit 4fa484a

Please sign in to comment.