This commit is contained in:
Amy de Buitléir 2025-09-06 18:44:03 +01:00
parent ac20e31eb5
commit f1c2fc3915
2 changed files with 3 additions and 3 deletions

View file

@ -4717,7 +4717,7 @@ that are on my hard drive.</p>
<pre class="nowrap">$ echo "FOO=${FOO}"
FOO=
$ nix develop
echo "FOO="
echo "FOO=${FOO}"
FOO=bar</pre>
</div>
</div>
@ -4782,7 +4782,7 @@ Hello from your flake!</pre>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2025-09-06 18:42:43 IST
Last updated 2025-09-06 18:43:25 IST
</div>
</div>
</body>

View file

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