We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7d0320 commit 820493fCopy full SHA for 820493f
pkg/lib/cmd/bpm.sh
@@ -19,17 +19,17 @@ main() {
19
20
for arg; do
21
case "$arg" in
22
- --help)
+ --help|-h)
23
util.show_help
24
exit
25
;;
26
- --version)
+ --version|-v)
27
cat <<-EOF
28
Version: $PROGRAM_VERSION
29
EOF
30
31
32
- --global)
+ --global|-g)
33
is_global='yes'
34
shift
35
pkg/lib/util/util.sh
@@ -243,7 +243,7 @@ util.get_project_root_dir() {
243
util.show_help() {
244
cat <<"EOF"
245
Usage:
246
- bpm [--help|--version|--global] <command> [args...]
+ bpm [--help|--version|--global|-g] <command> [args...]
247
248
Subcommands:
249
init <shell>
0 commit comments