Skip to content

Commit

Permalink
Re-add accidentally deleted comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaeldore committed Apr 24, 2017
1 parent 4e6c2bd commit a2ef25e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/LessMsi.Cli/OpenGuiCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ public static void ShowGui(List<string> args)
var p = new Process();
p.StartInfo.FileName = guiExe;

if (args.Count > 0)
//should we wait for exit?
if (args.Count > 0)
{
// We add double quotes to support paths with spaces, for ex: "E:\Downloads and Sofware\potato.msi".
p.StartInfo.Arguments = string.Format("\"{0}\"", args[1]);
Expand Down

0 comments on commit a2ef25e

Please sign in to comment.