tests.stdenv.hooks.reproducible-builds: fix mistake

This commit is contained in:
Artturin 2023-06-17 23:45:11 +03:00
parent 3ea5e83373
commit 2879607431

View file

@ -115,7 +115,7 @@
name = "test-reproducible-builds";
buildCommand = ''
# can't be tested more precisely because the value of random-seed changes depending on the output
[[ $env.NIX_CFLAGS_COMPILE =~ "-frandom-seed=" ]]
[[ $NIX_CFLAGS_COMPILE =~ "-frandom-seed=" ]]
touch $out
'';
};