forked from qt-creator/qt-creator
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:
@@ -227,7 +227,7 @@ RsyncCommandLine RsyncDeployStep::rsyncCommand(const SshConnection &sshConnectio
|
|||||||
QStringList{SshSettings::sshFilePath().toUserOutput()}
|
QStringList{SshSettings::sshFilePath().toUserOutput()}
|
||||||
<< sshConnection.connectionOptions());
|
<< sshConnection.connectionOptions());
|
||||||
const SshConnectionParameters sshParams = sshConnection.connectionParameters();
|
const SshConnectionParameters sshParams = sshConnection.connectionParameters();
|
||||||
return RsyncCommandLine(QStringList{"-e", sshCmdLine, "-avz"},
|
return RsyncCommandLine(QStringList{"-e", sshCmdLine, "-av"},
|
||||||
sshParams.userName() + '@' + sshParams.host());
|
sshParams.userName() + '@' + sshParams.host());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user