7205: bundlebuilder accepts old "dist" cmd, checks for po dir

This commit is contained in:
chema
2008-07-10 13:58:12 -06:00
committed by Tomeu Vizoso
parent cc8e682ab0
commit 756b9309e8
2 changed files with 20 additions and 1 deletions
+8
View File
@@ -81,6 +81,10 @@ class Builder(object):
def build_locale(self):
po_dir = os.path.join(self.config.source_dir, 'po')
if not self.config.bundle.is_dir(po_dir):
logging.warn("Missing po/ dir, cannot build_locale")
return
for f in os.listdir(po_dir):
if not f.endswith('.po'):
continue
@@ -214,6 +218,10 @@ def cmd_dist_xo(config, options, args):
packager = XOPackager(config)
packager.package()
def cmd_dist(config, options, args):
logging.warn("dist deprecated, use dist_xo.")
cmd_dist_xo(config, options, args)
def cmd_dist_source(config, options, args):
packager = SourcePackager(config)
packager.package()