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 <hjk@qt.io>
This commit is contained in:
Christian Kandeler
2019-04-23 16:00:59 +02:00
parent 7f0663dede
commit 7e0c17eb37

View File

@@ -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());
}