diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/pass-as-file.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pass-as-file.sh b/tests/pass-as-file.sh index b61576e05799..3dfe10baa235 100644 --- a/tests/pass-as-file.sh +++ b/tests/pass-as-file.sh @@ -10,7 +10,7 @@ mkDerivation { passAsFile = [ \"foo\" ]; foo = [ \"xyzzy\" ]; builder = builtins.toFile \"builder.sh\" '' - [ \"\$(cat \$foo)\" = xyzzy ] + [ \"\$(cat \$fooPath)\" = xyzzy ] touch \$out ''; } |