Skip to content

Commit

Permalink
Merge pull request #37 from ThatsJustCheesy/master
Browse files Browse the repository at this point in the history
Alias --dry-run as -n
  • Loading branch information
beeftornado committed Apr 16, 2020
2 parents 28135ff + 5ec87bf commit 4457c5e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cmd/brew-rmtree.rb
@@ -1,5 +1,5 @@
#:
#: * `rmtree` [`--force`] [`--dry-run`] [`--quiet`] [`--ignore=`formulaX,formulaY] formula1 [formula2] [formula3]...
#: * `rmtree` [`--force`] [`-n`|`--dry-run`] [`--quiet`] [`--ignore=`formulaX,formulaY] formula1 [formula2] [formula3]...
#:
#: Remove a formula entirely, including all of its dependencies,
#: unless of course, they are used by another formula.
Expand All @@ -17,8 +17,8 @@
#:
#: With `--ignore`, you can ignore some dependencies from being removed.
#:
#: You can use `--dry-run` to see what would be removed without actually removing
#: anything.
#: You can use `--dry-run` (alias `-n`) to see what would be removed without
#: actually removing anything.
#:
#: `--quiet` will hide output.
#:
Expand Down Expand Up @@ -508,7 +508,7 @@ def rmtree_args
EOS
switch "--quiet",
description: "Hide output."
switch "--dry-run",
switch "-n", "--dry-run",
description: "See what would be removed without actually removing anything."
switch "--force",
description: "Force the removal of <formula> even if other formulae depend on it. " +
Expand Down

0 comments on commit 4457c5e

Please sign in to comment.