~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to release.py

  • Committer: Aaron Bentley
  • Date: 2011-01-26 01:09:49 UTC
  • Revision ID: aaron@aaronbentley.com-20110126010949-8a2e7b2cf2yzj3zf
release.py cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
    sys.exit(1)
22
22
else:
23
23
    print "NEWS entry found"
24
 
final_name = '../bzrtools-release/bzrtools-%s.tar.gz' % bzrtools.__version__
25
 
if os.path.exists('../bzrtools.tar.gz'):
26
 
    print "Temp file exists already."
27
 
    sys.exit(1)
28
 
if os.path.exists(final_name):
29
 
    print "Final file exists already."
30
 
    sys.exit(1)
31
24
if call(['bzr', 'diff'], stdout=PIPE) != 0:
32
25
    print "Please commit before releasing"
33
26
    sys.exit(1)