| 227 | } |
| 228 | |
| 229 | VcsJob* BazaarPlugin::repositoryLocation(const QUrl& localLocation) |
| 230 | { |
| 231 | auto* job = new DVcsJob(BazaarUtils::workingCopy(localLocation), this); |
| 232 | job->setType(VcsJob::JobType::Unknown); |
| 233 | *job << "bzr" << "root" << localLocation; // It is only to make sure |
| 234 | connect(job, &DVcsJob::readyForParsing, this, &BazaarPlugin::parseBzrRoot); |
| 235 | return job; |
| 236 | } |
| 237 | |
| 238 | void BazaarPlugin::parseBzrRoot(DVcsJob* job) |
| 239 | { |