nushell: add envVars attribute (#3930)

This commit is contained in:
Yt 2023-05-03 18:12:21 -04:00 committed by GitHub
parent 0e4c33d760
commit 788777b536
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 19 additions and 1 deletions

View file

@ -1,2 +1,4 @@
let-env FOO = 'BAR'
let-env BAR = $'(echo BAZ)'

View file

@ -20,6 +20,8 @@
"lsname" = "(ls | get name)";
"ll" = "ls -a";
};
environmentVariables = { BAR = "$'(echo BAZ)'"; };
};
test.stubs.nushell = { };