Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono-addins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Ward <matt.ward@microsoft.com>2021-02-08 20:49:28 +0300
committerMatt Ward <matt.ward@microsoft.com>2021-02-08 20:49:28 +0300
commit28be40a37113d37acd6a3c09efe561866e67744a (patch)
tree90ec1e9ed9c5dc06418068c9c4f20d5583bd8afe
parent8ea73ddb3c484963c2f830bb5dd18a11d14cc18f (diff)
Fix IndexOutOfRangeException when using get-desc with SetupProcessdev/mrward/ns2.0-rebased
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.
-rw-r--r--Mono.Addins.SetupProcess/SetupProcessTool.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mono.Addins.SetupProcess/SetupProcessTool.cs b/Mono.Addins.SetupProcess/SetupProcessTool.cs
index 6c68546..65f0032 100644
--- a/Mono.Addins.SetupProcess/SetupProcessTool.cs
+++ b/Mono.Addins.SetupProcess/SetupProcessTool.cs
@@ -62,7 +62,7 @@ namespace Mono.Addins.SetupProcess
}
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) {