From 56652e92574f14c779e1df348313d02b4e237449 Mon Sep 17 00:00:00 2001 From: Robert Muehsig Date: Mon, 16 Oct 2017 22:58:52 +0200 Subject: [PATCH] done note --- ElectronNET.CLI/Commands/BuildCommand.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ElectronNET.CLI/Commands/BuildCommand.cs b/ElectronNET.CLI/Commands/BuildCommand.cs index f556d8f..06b8b05 100644 --- a/ElectronNET.CLI/Commands/BuildCommand.cs +++ b/ElectronNET.CLI/Commands/BuildCommand.cs @@ -96,8 +96,8 @@ namespace ElectronNET.CLI.Commands ProcessHelper.CmdExecute($"electron-packager . --platform=win32 --arch=x64 --out=\"{buildPath}\" --overwrite", tempPath); } - - if(RuntimeInformation.IsOSPlatform(OSPlatform.OSX)) + + if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX)) { Console.WriteLine("Package Electron App for OSX..."); @@ -111,6 +111,8 @@ namespace ElectronNET.CLI.Commands ProcessHelper.CmdExecute($"electron-packager . --platform=linux --arch=x64 --out=\"{buildPath}\" --overwrite", tempPath); } + Console.WriteLine("... done"); + return true; }); }