~abentley/bzrtools/bzrtools.dev

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
There was an old bug in the LP bug tracker for bzrtools, and I've been trying to clean it out, since it isn't supposed to be used.

Specifically it seems the freeBSD system prefers '--check' as a flag, rather than '--dry-run'.

The bug is here:
https://bugs.beta.launchpad.net/bzrtools/+bug/84256

The proposed fix is:

- args.append('--dry-run')
+ if sys.platform.startswith('freebsd'):
+     args.append('--check')
+ else:
+     args.append('--dry-run')

John
=:->