| 120 | } |
| 121 | |
| 122 | VcsJob* BazaarPlugin::init(const QUrl& localRepositoryRoot) |
| 123 | { |
| 124 | auto* job = new DVcsJob(BazaarUtils::toQDir(localRepositoryRoot), this); |
| 125 | job->setType(VcsJob::Import); |
| 126 | *job << "bzr" << "init"; |
| 127 | return job; |
| 128 | } |
| 129 | |
| 130 | bool BazaarPlugin::isVersionControlled(const QUrl& localLocation) |
| 131 | { |