comparison src/hgrunner.cpp @ 407:b45e6cd9f1d4

Revert small change that broke use of our auth extension
author Chris Cannam <chris.cannam@eecs.qmul.ac.uk>
date Thu, 26 May 2011 15:52:11 +0100
parents c567fed39559
children 005633eed862
comparison
equal deleted inserted replaced
406:c567fed39559 407:b45e6cd9f1d4
416 params.push_front("ui.interactive=true"); 416 params.push_front("ui.interactive=true");
417 params.push_front("--config"); 417 params.push_front("--config");
418 418
419 if (settings.value("useextension", true).toBool()) { 419 if (settings.value("useextension", true).toBool()) {
420 QString extpath = getExtensionLocation(); 420 QString extpath = getExtensionLocation();
421 params.push_front(QString("extensions.easyhg=\"%1\"").arg(extpath)); 421 // Looks like this one must be without quotes, even though the SSH
422 // one above only works on Windows if it has quotes (at least where
423 // there is a space in the path). Odd
424 params.push_front(QString("extensions.easyhg=%1").arg(extpath));
422 params.push_front("--config"); 425 params.push_front("--config");
423 } 426 }
424 interactive = true; 427 interactive = true;
425 } 428 }
426 429