This commit is contained in:
Amy de Buitléir 2025-09-06 18:16:08 +01:00
parent 54f9177bf1
commit 4c970ef24b
2 changed files with 2 additions and 3 deletions

View file

@ -23,9 +23,9 @@ Here's a demonstration using the shell.
....
$ echo "FOO=${FOO}"
$# ../../../../../start-shell nix develop <<EOL
$ echo "FOO=$${FOO}"
$ echo "FOO=${FOO}"
$ env
$ echo $$FOO
$ echo $FOO
$# EOL
....

View file

@ -14,7 +14,6 @@
default = pkgs.mkShell {
shellHook = ''
export FOO="bar"
env
'';
};
};