Skip to content

Commit

Permalink
fix CommandLine option errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ormico committed Feb 29, 2016
1 parent f3efd02 commit 1b8bd5c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Ormico.DbPatchManager.Cmd/CommandLineOptions/Options.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ public Options()
}

[VerbOption("init", HelpText = "")]
public InitOptions AddVerb { get; set; }
public InitOptions InitVerb { get; set; }

[VerbOption("addpatch", HelpText = "Create a new Patch folder and add it to odpm.json")]
public AddPatchOptions AddPatchVerb { get; set; }

[VerbOption("build", HelpText = "")]
public BuildOptions TagVerb { get; set; }
public BuildOptions BuildVerb { get; set; }
}

class InitOptions
Expand All @@ -47,7 +47,7 @@ class InitOptions
class AddPatchOptions
{
[Option("name", HelpText = "patch name")]
public bool Name { get; set; }
public string Name { get; set; }
}

class BuildOptions
Expand Down

0 comments on commit 1b8bd5c

Please sign in to comment.