mirror of
https://github.com/nushell/nushell.git
synced 2025-02-02 19:50:05 +01:00
Merge branch 'main' of https://github.com/jonathandturner/engine-q into similar-name
This commit is contained in:
commit
d6b1ff932a
@ -130,7 +130,7 @@ impl Signature {
|
||||
let (name, s) = self.check_names(name, short);
|
||||
|
||||
self.named.push(Flag {
|
||||
long: name.into(),
|
||||
long: name,
|
||||
short: s,
|
||||
arg: Some(shape.into()),
|
||||
required: false,
|
||||
@ -152,7 +152,7 @@ impl Signature {
|
||||
let (name, s) = self.check_names(name, short);
|
||||
|
||||
self.named.push(Flag {
|
||||
long: name.into(),
|
||||
long: name,
|
||||
short: s,
|
||||
arg: Some(shape.into()),
|
||||
required: true,
|
||||
@ -173,7 +173,7 @@ impl Signature {
|
||||
let (name, s) = self.check_names(name, short);
|
||||
|
||||
self.named.push(Flag {
|
||||
long: name.into(),
|
||||
long: name,
|
||||
short: s,
|
||||
arg: None,
|
||||
required: false,
|
||||
|
Loading…
Reference in New Issue
Block a user