summaryrefslogtreecommitdiff
path: root/lorry
diff options
context:
space:
mode:
authorBen Brown <ben.brown@codethink.co.uk>2020-08-06 10:14:30 +0000
committerBen Brown <ben.brown@codethink.co.uk>2020-08-06 10:14:30 +0000
commit39e5fc62a338cf2ff0b3c6dd9aa8ad7547e87945 (patch)
tree04fc9cce50de2faab745050f7589526c2c720fc9 /lorry
parenta934314cbdc56e30c77f554cd21772e5fbd306c3 (diff)
parenta839d558c96f03833b026ee33a383e9ce2108006 (diff)
downloadlorry-39e5fc62a338cf2ff0b3c6dd9aa8ad7547e87945.tar.gz
Merge branch 'bwh/breezy-warning' into 'master'
Add warnings about using Breezy See merge request CodethinkLabs/lorry/lorry!13
Diffstat (limited to 'lorry')
-rwxr-xr-xlorry4
1 files changed, 4 insertions, 0 deletions
diff --git a/lorry b/lorry
index 955b46b..1989400 100755
--- a/lorry
+++ b/lorry
@@ -466,6 +466,10 @@ class Lorry(cliapp.Application):
def gitify_bzr(self, project_name, dirname, gitdir, spec):
bzr = self.settings['bazaar-command']
+ if os.path.basename(bzr) == 'brz':
+ msg = 'Using Breezy for Bazaar conversion, which may not work correctly'
+ logging.warning(msg)
+ self.output.write('%s\n' % msg)
bzrdir = os.path.join(dirname, 'bzr')
# check if repo exists