mirror of
https://github.com/nushell/nushell
synced 2024-12-26 13:03:07 +00:00
add temp-path
to $nu
(#471)
This commit is contained in:
parent
c2aa6c708d
commit
9d7685e565
1 changed files with 9 additions and 0 deletions
|
@ -552,6 +552,15 @@ pub fn eval_variable(
|
|||
}
|
||||
}
|
||||
|
||||
let temp = std::env::temp_dir();
|
||||
if let Some(temp_path) = temp.to_str() {
|
||||
output_cols.push("temp-path".into());
|
||||
output_vals.push(Value::String {
|
||||
val: temp_path.into(),
|
||||
span,
|
||||
})
|
||||
}
|
||||
|
||||
Ok(Value::Record {
|
||||
cols: output_cols,
|
||||
vals: output_vals,
|
||||
|
|
Loading…
Reference in a new issue