From 38d8a847b9d472f58cca37567be3200f48f4b07e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 6 Oct 2010 05:52:35 +0000 Subject: Only create (and link to) release tarballs for extensions with non-zero revisions. --- lv2specgen/lv2specgen.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lv2specgen') diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py index 9adae8d..00290eb 100755 --- a/lv2specgen/lv2specgen.py +++ b/lv2specgen/lv2specgen.py @@ -715,7 +715,8 @@ def specgen(specloc, docdir, template, instances=False, mode="spec"): header_path = bundle_path + '/' + basename + '.h' other_files = '
  • Bundle
  • \n' - other_files += '
  • Releases
  • \n' + if revision and revision[0] != '0': + other_files += '
  • Releases
  • \n' if os.path.exists(os.path.abspath(header_path)): other_files += '
  • Header Documentation
  • \n' % ( basename + '_8h.html') -- cgit v1.2.1