mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 16:33:37 +01:00
add temp-path
to $nu
(#471)
This commit is contained in:
parent
c2aa6c708d
commit
9d7685e565
@ -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 New Issue
Block a user