forked from M-Labs/nix-scripts
windows tests: fix qemu path
This commit is contained in:
parent
d7917b4b5b
commit
481bedb44c
|
@ -23,7 +23,7 @@ let
|
||||||
"-device" "e1000,netdev=n1"
|
"-device" "e1000,netdev=n1"
|
||||||
];
|
];
|
||||||
argStr = builtins.concatStringsSep " " (args ++ extraArgs);
|
argStr = builtins.concatStringsSep " " (args ++ extraArgs);
|
||||||
in "qemu-system-x86_64 ${argStr}";
|
in "${qemu_kvm}/bin/qemu-system-x86_64 ${argStr}";
|
||||||
|
|
||||||
sshOpts = "-o StrictHostKeyChecking=accept-new -o UserKnownHostsFile=/tmp/known_hosts";
|
sshOpts = "-o StrictHostKeyChecking=accept-new -o UserKnownHostsFile=/tmp/known_hosts";
|
||||||
ssh = cmd: ''
|
ssh = cmd: ''
|
||||||
|
|
Loading…
Reference in New Issue