SVN: Fix checkout wizard

Task-number: QTCREATORBUG-13457
Change-Id: Ib328678de18e1ae7160aaa1035356a62413b2efb
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Tobias Hunger
2014-11-20 18:32:30 +01:00
parent 4c119b985a
commit 9b5f558bf2
2 changed files with 1 additions and 2 deletions

View File

@@ -76,7 +76,7 @@ VcsCommand *CheckoutWizard::createCommand(FileName *checkoutDir)
const QString directory = cwp->directory();
QStringList args;
args << QLatin1String("checkout");
args << SubversionClient::addAuthenticationOptions(settings) << cwp->repository() << directory;
args << SubversionClient::addAuthenticationOptions(settings);
args << QLatin1String(Constants::NON_INTERACTIVE_OPTION);
if (cwp->trustServerCert())
args << QLatin1String("--trust-server-cert");