Skip to content

Commit 5fd8268

Browse files
committed
Fix invocation error in Chocolatey bootstrapper
1 parent 03950b6 commit 5fd8268

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bootstrapper/bootstrapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ static void Main(string[] args)
2727
choco.SetCustomLogging(new NullLog());
2828

2929
choco.Set(conf => conf.CommandName = args.FirstOrDefault());
30-
choco.RunConsole(args.Skip(1).ToArray());
30+
choco.RunConsole(args.ToArray());
3131
}
3232

3333
static bool IsAdministrator()

0 commit comments

Comments
 (0)