mirror of
https://github.com/nushell/nushell
synced 2024-11-15 17:27:58 +00:00
Revert "Add pipeline operators to help" (#7454)
Reverts nushell/nushell#7449
This commit is contained in:
parent
0c656fd276
commit
0242b30027
1 changed files with 0 additions and 18 deletions
|
@ -312,24 +312,6 @@ fn generate_operator_info() -> Vec<OperatorInfo> {
|
|||
description: "Checks if one value is true and the other is false.".into(),
|
||||
precedence: 45,
|
||||
},
|
||||
OperatorInfo {
|
||||
op_type: "Pipeline".into(),
|
||||
operator: "&&".into(),
|
||||
name: "PipelineAnd".into(),
|
||||
description:
|
||||
"Runs the pipeline on the left and, if successful, runs pipeline on the right."
|
||||
.into(),
|
||||
precedence: 0,
|
||||
},
|
||||
OperatorInfo {
|
||||
op_type: "Pipeline".into(),
|
||||
operator: "||".into(),
|
||||
name: "PipelineOr".into(),
|
||||
description:
|
||||
"Runs the pipeline on the left and, if it failed, runs pipeline on the right."
|
||||
.into(),
|
||||
precedence: 0,
|
||||
},
|
||||
]
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue