mirror of
https://github.com/danbulant/nushell
synced 2026-06-10 10:10:46 +00:00
Change select to match 0.44 (#4792)
This commit is contained in:
parent
fac086c826
commit
e0fac7bc72
1 changed files with 2 additions and 2 deletions
|
|
@ -147,9 +147,9 @@ fn select(
|
|||
cols.push(path.into_string());
|
||||
vals.push(value);
|
||||
}
|
||||
Err(error) => {
|
||||
Err(_) => {
|
||||
cols.push(path.into_string());
|
||||
vals.push(Value::Error { error });
|
||||
vals.push(Value::Nothing { span });
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue