Expand external command names (#682)

This commit is contained in:
JT 2022-01-06 10:32:56 +11:00 committed by GitHub
parent 47544ad219
commit d39e8c15fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -193,6 +193,10 @@ pub fn parse_external_call(
let mut args = vec![];
let name_span = spans[0];
let name = String::from_utf8_lossy(working_set.get_span_contents(name_span)).to_string();
let cwd = working_set.get_cwd();
let name = nu_path::expand_path_with(name, cwd)
.to_string_lossy()
.to_string();
let mut error = None;
for span in &spans[1..] {