mirror of
https://github.com/Jguer/yay.git
synced 2025-10-05 00:08:30 -04:00
Merge pull request #63 from AnthonyLam/issue-49
Add -V and -h for flag parsing
This commit is contained in:
commit
878c606556
6
cmd.go
6
cmd.go
@ -142,10 +142,14 @@ func parser() (op string, options []string, packages []string, changedConfig boo
|
||||
}
|
||||
if arg[0] == '-' && arg[1] != '-' {
|
||||
switch arg {
|
||||
case "-V":
|
||||
arg = "--version"
|
||||
case "-h":
|
||||
arg = "--help"
|
||||
default:
|
||||
op = arg
|
||||
continue
|
||||
}
|
||||
continue
|
||||
}
|
||||
|
||||
if arg[0] == '-' && arg[1] == '-' {
|
||||
|
Loading…
x
Reference in New Issue
Block a user