Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
Fix IndexOutOfRangeException when using get-desc with SetupProcess
Browse files Browse the repository at this point in the history
Fixed the setup process tool trying to use too many command line
arguments. The out directory is passed on stdin not as a command
line argument.
  • Loading branch information
mrward committed Feb 8, 2021
1 parent 8ea73dd commit 28be40a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mono.Addins.SetupProcess/SetupProcessTool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public static int Main (string [] args)
}
case "get-desc":
var outFile = Console.In.ReadLine ();
reg.ParseAddin (monitor, args [2], args [3]);
reg.ParseAddin (monitor, args [2], outFile);
break;
}
} catch (Exception ex) {
Expand Down

0 comments on commit 28be40a

Please sign in to comment.