This commit is contained in:
nub31
2025-09-29 16:23:39 +02:00
parent 857e29d77b
commit c0948e856a
13 changed files with 568 additions and 474 deletions

View File

@@ -21,7 +21,7 @@ public static class Archive
var errors = await process.StandardError.ReadToEndAsync();
if (!string.IsNullOrWhiteSpace(errors))
{
await Console.Error.WriteLineAsync("ar error when archiving:\n" + errors);
await Console.Error.WriteLineAsync(errors);
}
return process.ExitCode == 0;

View File

@@ -22,7 +22,7 @@ public static class GCC
var errors = await process.StandardError.ReadToEndAsync();
if (!string.IsNullOrWhiteSpace(errors))
{
await Console.Error.WriteLineAsync("gcc error when assembling:\n" + errors);
await Console.Error.WriteLineAsync(errors);
}
return process.ExitCode == 0;

View File

@@ -22,7 +22,7 @@ public static class QBE
var errors = await process.StandardError.ReadToEndAsync();
if (!string.IsNullOrWhiteSpace(errors))
{
await Console.Error.WriteLineAsync("qbe error:\n" + errors);
await Console.Error.WriteLineAsync(errors);
}
return process.ExitCode == 0;