artiq_flash: wrap paramiko commands in bash login shell

the login shell will load the nix environment on non-nixos systems

Signed-off-by: Leon Riesebos <leon.riesebos@duke.edu>
pull/1689/head
Leon Riesebos 2021-05-27 15:32:23 +02:00 committed by Sébastien Bourdeauducq
parent b89610bbcd
commit 07bd1e27c1
1 changed files with 6 additions and 1 deletions

View File

@ -152,7 +152,12 @@ class SSHClient(Client):
if get_pty:
chan.get_pty()
cmd = " ".join([shlex.quote(arg.format(tmp=self._tmpr, **kws)) for arg in cmd])
logger.debug("Executing {}".format(cmd))
# Wrap command in a bash login shell
cmd = "exec {}".format(cmd)
cmd = "bash --login -c {}".format(shlex.quote(cmd))
logger.debug("Executing: {}".format(cmd))
chan.exec_command(cmd)
return chan