From 50964aa8df2df187875f1f2950cc106d359817ab Mon Sep 17 00:00:00 2001 From: Srujan Saggam Date: Tue, 23 Apr 2019 14:55:33 -0700 Subject: [PATCH] changed the casing of option alias as it conflicts with --help --- src/mlnet/Commands/CommandDefinitions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mlnet/Commands/CommandDefinitions.cs b/src/mlnet/Commands/CommandDefinitions.cs index 54cbce8026..20ac207632 100644 --- a/src/mlnet/Commands/CommandDefinitions.cs +++ b/src/mlnet/Commands/CommandDefinitions.cs @@ -102,7 +102,7 @@ Option OutputPath() => new Argument(defaultValue: new DirectoryInfo("."))); Option HasHeader() => - new Option(new List() { "--has-header", "-h" }, "Specify true/false depending if the dataset file(s) have a header row.", + new Option(new List() { "--has-header", "-H" }, "Specify true/false depending if the dataset file(s) have a header row.", new Argument(defaultValue: true)); Option Cache() =>