~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to .be/bugs/be87c595-f555-4bce-a12a-9eeefc7349ab/comments/3448c47d-def5-4d03-9b8c-f0968e0c787c/body

  • Committer: Aaron Bentley
  • Date: 2007-03-16 19:18:04 UTC
  • mfrom: (521.1.1 bzrtools)
  • Revision ID: abentley@panoramicfeedback.com-20070316191804-ftb0yewf13a7njoe
Merge bug report

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
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.
 
2
 
 
3
Specifically it seems the freeBSD system prefers '--check' as a flag, rather than '--dry-run'.
 
4
 
 
5
The bug is here:
 
6
https://bugs.beta.launchpad.net/bzrtools/+bug/84256
 
7
 
 
8
The proposed fix is:
 
9
 
 
10
- args.append('--dry-run')
 
11
+ if sys.platform.startswith('freebsd'):
 
12
+     args.append('--check')
 
13
+ else:
 
14
+     args.append('--dry-run')
 
15
 
 
16
John
 
17
=:->
 
18