···582582583583 # While sh is bash on NixOS, this is not the case for every distro.
584584 # We explicitly call bash here to allow for the driver to boot other distros as well.
585585- out_command = f"{timeout_str} bash -c {shlex.quote(command)} 2>/dev/null | (base64 -w 0; echo)\n"
585585+ out_command = (
586586+ f"{timeout_str} bash -c {shlex.quote(command)} | (base64 -w 0; echo)\n"
587587+ )
586588587589 assert self.shell
588590 self.shell.send(out_command.encode())