nixos/testing: fix pyflakes builtins with bash 5.3p0

Printing the file contents with `< file` does not seem to work anymore.

authored by Martin Weinelt and committed by Alyssa Ross f5a40e11 d6717855

+1 -1
+1 -1
nixos/lib/testing/driver.nix
··· 90 90 91 91 PYFLAKES_BUILTINS="$( 92 92 echo -n ${lib.escapeShellArg (lib.concatStringsSep "," pythonizedNames)}, 93 - < ${lib.escapeShellArg "driver-symbols"} 93 + cat ${lib.escapeShellArg "driver-symbols"} 94 94 )" ${hostPkgs.python3Packages.pyflakes}/bin/pyflakes $out/test-script 95 95 ''} 96 96