Skip to content

Commit

Permalink
Improve iso maker logging
Browse files Browse the repository at this point in the history
  • Loading branch information
quajak committed Dec 31, 2023
1 parent 3cddfe7 commit 2f6462a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/Cosmos.TestRunner.Core/Engine.Helpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -337,10 +337,10 @@ private static string GetCosmosUserkitFolder()

private void MakeIso(string objectFile, string isoFile)
{
IsoMaker.Generate(objectFile, isoFile);
string response = IsoMaker.Generate(objectFile, isoFile);
if (!File.Exists(isoFile))
{
throw new Exception("Error building iso");
throw new Exception($"Error building iso: {response}");
}
}
}
Expand Down

0 comments on commit 2f6462a

Please sign in to comment.