Skip to content

Commit

Permalink
fix: short v
Browse files Browse the repository at this point in the history
  • Loading branch information
elrrrrrrr committed Feb 29, 2024
1 parent 37c8573 commit 19d079e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ ${
["--bun", "Use bun to remove and install packages."],
["--verbose", "Show additional debugging information."],
["-h, --help", "Show this help text."],
["--version", "Print the version number."],
["-v, --version", "Print the version number."],
])
}
Expand Down Expand Up @@ -119,7 +119,7 @@ if (args.length === 0) {
bun: { type: "boolean", default: false },
debug: { type: "boolean", default: false },
help: { type: "boolean", default: false, short: "h" },
version: { type: "boolean", default: false },
version: { type: "boolean", default: false, short: "v" },
},
});

Expand Down

0 comments on commit 19d079e

Please sign in to comment.