1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-11 03:21:08 +01:00

nushell: deprecation of let-env (#4292)

This commit is contained in:
Yt 2023-08-02 01:27:30 +08:00 committed by GitHub
parent 4542db6056
commit 8c731978f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 10 deletions

View file

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

View file

@ -13,7 +13,7 @@
'';
envFile.text = ''
let-env FOO = 'BAR'
$env.FOO = 'BAR'
'';
loginFile.text = ''