Skip to content

Commit

Permalink
Merge branch 'master' into int32_tostring
Browse files Browse the repository at this point in the history
  • Loading branch information
quajak authored Jan 2, 2024
2 parents ac4dd55 + d0f59d5 commit 99b0070
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BSD 3-Clause License

Copyright (c) 2023, CosmosOS, COSMOS Project
Copyright (c) 2024, CosmosOS, COSMOS Project
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
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 99b0070

Please sign in to comment.