mirror of
https://github.com/nushell/nushell
synced 2025-01-13 21:55:07 +00:00
clippy errors
This commit is contained in:
parent
4e6b6a8902
commit
96af23f370
1 changed files with 3 additions and 3 deletions
|
@ -130,13 +130,13 @@ pub fn eval_expression(
|
|||
|
||||
let decl_id = engine_state
|
||||
.find_decl("run_external".as_bytes())
|
||||
.ok_or(ShellError::ExternalNotSupported(name.clone()))?;
|
||||
.ok_or_else(|| ShellError::ExternalNotSupported(*name))?;
|
||||
|
||||
let command = engine_state.get_decl(decl_id);
|
||||
let new_context = context.enter_scope();
|
||||
|
||||
let mut call = Call::new();
|
||||
call.positional = [name.clone()]
|
||||
call.positional = [*name]
|
||||
.iter()
|
||||
.chain(args.iter())
|
||||
.map(|span| {
|
||||
|
@ -144,7 +144,7 @@ pub fn eval_expression(
|
|||
let val = String::from_utf8_lossy(contents);
|
||||
Expression {
|
||||
expr: Expr::String(val.into()),
|
||||
span: span.clone(),
|
||||
span: *span,
|
||||
ty: Type::String,
|
||||
custom_completion: None,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue