Skip to content

Commit

Permalink
Merge branch 'master' into fix/update-year
Browse files Browse the repository at this point in the history
  • Loading branch information
zarlo authored Jan 2, 2024
2 parents 618b825 + 83ad76c commit 7be8519
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 7be8519

Please sign in to comment.