lol

test-driver: revert stderr nullpipe

Removes 2>/dev/null which re-adds stderr output breaking execute

+3 -1
+3 -1
nixos/lib/test-driver/test_driver/machine.py
··· 582 582 583 583 # While sh is bash on NixOS, this is not the case for every distro. 584 584 # We explicitly call bash here to allow for the driver to boot other distros as well. 585 - out_command = f"{timeout_str} bash -c {shlex.quote(command)} 2>/dev/null | (base64 -w 0; echo)\n" 585 + out_command = ( 586 + f"{timeout_str} bash -c {shlex.quote(command)} | (base64 -w 0; echo)\n" 587 + ) 586 588 587 589 assert self.shell 588 590 self.shell.send(out_command.encode())