Skip to content

Commit

Permalink
Fixing merge issue and adding named arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
analogrelay committed May 6, 2012
1 parent ff80445 commit d9de72f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions git-credential-winstore/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ static void Main(string[] args)
string cmd;
if (args.Length == 0)
{
InstallTheApp();
InstallTheApp(silent: false);
return;
}

Expand Down Expand Up @@ -69,7 +69,7 @@ private static bool TrySilentInstall(ref string[] args)
if (args.Length > 0 && args[0] == "-s")
{
Console.Out.WriteLine("Silently Installing...");
InstallTheApp(true);
InstallTheApp(silent: true);
args = args.Skip(1).ToArray();
return true;
}
Expand Down

0 comments on commit d9de72f

Please sign in to comment.