Skip to content

Commit

Permalink
Merge branch 'pr864' into stable
Browse files Browse the repository at this point in the history
* pr864:
  (GH-862) Add support for side-by-side in uninstall command
  • Loading branch information
ferventcoder committed Aug 3, 2016
2 parents 0513e70 + 55ceadc commit 289f0c0
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -58,6 +58,9 @@ public virtual void configure_argument_parser(OptionSet optionSet, ChocolateyCon
.Add("params=|parameters=|pkgparameters=|packageparameters=|package-parameters=",
"PackageParameters - Parameters to pass to the package. Defaults to unspecified.",
option => configuration.PackageParameters = option.remove_surrounding_quotes())
.Add("m|sxs|sidebyside|side-by-side|allowmultiple|allow-multiple|allowmultipleversions|allow-multiple-versions",
"AllowMultipleVersions - Should multiple versions of a package be installed? Defaults to false.",
option => configuration.AllowMultipleVersions = option != null)
.Add("x|forcedependencies|force-dependencies|removedependencies|remove-dependencies",
"RemoveDependencies - Uninstall dependencies when uninstalling package(s). Defaults to false.",
option => configuration.ForceDependencies = option != null)
Expand Down

0 comments on commit 289f0c0

Please sign in to comment.