wfvm: fix 'protocol error: filename does not match request' in win-get

pull/30/head
Sebastien Bourdeauducq 2020-06-15 20:09:09 +08:00
parent 38d7c89a8b
commit 0ba8000660
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ rec {
win-get = pkgs.writeShellScriptBin "win-get" ''
echo win-get $1
${pkgs.sshpass}/bin/sshpass -p1234 -- \
${pkgs.openssh}/bin/scp -P 2022 ${sshOpts} \
${pkgs.openssh}/bin/scp -T -P 2022 ${sshOpts} \
wfvm@localhost:$1 .
'';