Skip to content

Commit c1bd48b

Browse files
committed
adding the resultcode to the output
1 parent c10e5b7 commit c1bd48b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ElectronNET.CLI/Commands/BuildCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public Task<bool> ExecuteAsync()
7878

7979
if (resultCode != 0)
8080
{
81-
Console.WriteLine("Error occurred during dotnet publish.");
81+
Console.WriteLine("Error occurred during dotnet publish: " + resultCode);
8282
return false;
8383
}
8484

ElectronNET.CLI/Commands/StartElectronCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public Task<bool> ExecuteAsync()
5555

5656
if (resultCode != 0)
5757
{
58-
Console.WriteLine("Error occurred during dotnet publish.");
58+
Console.WriteLine("Error occurred during dotnet publish: " + resultCode);
5959
return false;
6060
}
6161

0 commit comments

Comments
 (0)