adding the resultcode to the output

This commit is contained in:
Robert Muehsig
2018-09-27 22:48:54 +02:00
parent c10e5b74bd
commit c1bd48b58d
2 changed files with 2 additions and 2 deletions

View File

@@ -78,7 +78,7 @@ namespace ElectronNET.CLI.Commands
if (resultCode != 0)
{
Console.WriteLine("Error occurred during dotnet publish.");
Console.WriteLine("Error occurred during dotnet publish: " + resultCode);
return false;
}

View File

@@ -55,7 +55,7 @@ namespace ElectronNET.CLI.Commands
if (resultCode != 0)
{
Console.WriteLine("Error occurred during dotnet publish.");
Console.WriteLine("Error occurred during dotnet publish: " + resultCode);
return false;
}