From 7e0c17eb3797977cdb6debddcbec43704d1fb7fc Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Tue, 23 Apr 2019 16:00:59 +0200 Subject: RemoteLinux: Do not use rsync's -z option There are several ways of specifying compression, none of which are guaranteed to work in all versions of rsync. We will make this configurable in 4.10. Fixes: QTCREATORBUG-22352 Change-Id: I0dbf9531cb84e15559728ac9bd3e90a9d65382e4 Reviewed-by: hjk --- src/plugins/remotelinux/rsyncdeploystep.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/remotelinux/rsyncdeploystep.cpp b/src/plugins/remotelinux/rsyncdeploystep.cpp index ba013bb649..8c04860c25 100644 --- a/src/plugins/remotelinux/rsyncdeploystep.cpp +++ b/src/plugins/remotelinux/rsyncdeploystep.cpp @@ -227,7 +227,7 @@ RsyncCommandLine RsyncDeployStep::rsyncCommand(const SshConnection &sshConnectio QStringList{SshSettings::sshFilePath().toUserOutput()} << sshConnection.connectionOptions()); const SshConnectionParameters sshParams = sshConnection.connectionParameters(); - return RsyncCommandLine(QStringList{"-e", sshCmdLine, "-avz"}, + return RsyncCommandLine(QStringList{"-e", sshCmdLine, "-av"}, sshParams.userName() + '@' + sshParams.host()); } -- cgit v1.2.1