From: Thierry Parmentelat Date: Tue, 7 May 2013 09:47:18 +0000 (+0200) Subject: dirty patch, release-changelog won't work with the new ipfw being under a separate... X-Git-Tag: 5.2.3~38 X-Git-Url: http://git.onelab.eu/?p=build.git;a=commitdiff_plain;h=ac082bc6861ed2d2c72534c6fe102ada210f6181 dirty patch, release-changelog won't work with the new ipfw being under a separate git repo.. --- diff --git a/module-tools.py b/module-tools.py index a1d3ab14..ac9c00f9 100755 --- a/module-tools.py +++ b/module-tools.py @@ -1344,7 +1344,14 @@ def release_changelog(options, buildtag_old, buildtag_new): os.system("cp -f /%s %s" % (specfile, tmpfile)) m = get_module(module, second) - m.init_module_dir() + # patch for ipfw that, being managed in a separate repo, won't work for now + try: + m.init_module_dir() + except Exception,e: + print """Could not retrieve module %s - skipped +{{{ %s }}} +""" %( m.friendly_name(), e) + continue specfile = m.main_specname() if m.repository.type == "svn":