Open honnip opened 2 months ago
This might be a bug because IIRC we made it so that comments would need whitespace before the #
to specifically allow these use cases. For example:
^echo foo#bar
works, but
^echo (^echo foo#bar)
doesn't. So, clearly, there is some mismatch.
Doing nix path-info -Sh (nix build --print-out-paths 'nixpkgs#nushell')
should work as a workaround.
Yeah something is amiss in the parser after encountering a #
, breaking the validation even though we only treat it as a comment with a leading space
Describe the bug
For example, I cannot
nix path-info -Sh (nix build --print-out-paths nixpkgs#nushell)
How to reproduce
nix path-info -Sh (nix build --print-out-paths nixpkgs#nushell)
Expected behavior
executes the command inside, then passes it as argument
Configuration