Substitute cleanup

This commit is contained in:
2023-08-03 14:25:11 -07:00
parent 917746f44f
commit 83f00c761b
4 changed files with 9 additions and 6 deletions

View File

@ -257,7 +257,7 @@ pub fn do_command(
}
let v = args[1].to_string();
let (_, v) = substitute(&v, v.len());
let v = substitute(&v);
let r = context.delete_variable(&v);
match r {