1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-30 03:23:16 +02:00

rename files referring to antiquotation

since we renamed this to string interpolation, file names should be
fixed up as well
This commit is contained in:
Valentin Gagarin 2023-06-15 02:29:30 +02:00
parent 946cd9e3f9
commit c453719d6e
5 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,12 @@
let
foo = "foo";
in
{
simple = ./${foo};
surrounded = ./a-${foo}-b;
absolute = /${foo};
expr = ./${foo + "/bar"};
home = ~/${foo};
notfirst = ./bar/${foo};
slashes = /${foo}/${"bar"};
}