| 260 | } |
| 261 | |
| 262 | VcsJob* BazaarPlugin::status(const QList<QUrl>& localLocations, IBasicVersionControl::RecursionMode recursion) |
| 263 | { |
| 264 | Q_UNUSED(recursion); |
| 265 | auto* job = new DVcsJob(BazaarUtils::workingCopy(localLocations[0]), this); |
| 266 | job->setType(VcsJob::Status); |
| 267 | *job << "bzr" << "status" << "--short" << "--no-pending" << "--no-classify" << localLocations; |
| 268 | connect(job, &DVcsJob::readyForParsing, this, &BazaarPlugin::parseBzrStatus); |
| 269 | return job; |
| 270 | } |
| 271 | |
| 272 | void BazaarPlugin::parseBzrStatus(DVcsJob* job) |
| 273 | { |
no test coverage detected