diff options
author | Bjoern Michaelsen <b_michaelsen@openoffice.org> | 2010-11-22 18:19:25 +0100 |
---|---|---|
committer | Bjoern Michaelsen <b_michaelsen@openoffice.org> | 2010-11-22 18:19:25 +0100 |
commit | 9a95417ef68d5712dcaaad4deaf635f8b1b332eb (patch) | |
tree | 9eba3f506c913ac73e285964137ba667c25d7f94 /solenv/bin | |
parent | c0fde8c88fdd63546d8166f72a8fff81a4a97b02 (diff) |
gnumake2: removed milestone from packed module
Diffstat (limited to 'solenv/bin')
-rwxr-xr-x | solenv/bin/packmodule | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/solenv/bin/packmodule b/solenv/bin/packmodule index 3c50bd7f8588..dd1ac0439308 100755 --- a/solenv/bin/packmodule +++ b/solenv/bin/packmodule @@ -36,13 +36,13 @@ def stripped_paths_to_pack(loglines): return (path.partition('/')[2] for path in paths_to_pack(loglines)) def main(args): - """creates/overwrites a file at OUTDIR/zip/MILESTONE/MODULE.zip containing the contents of the gb_deliver.log.""" - if len(args) != 4: - print('usage: packmodule OUTDIR MODULE MILESTONE') + """creates/overwrites a file at OUTDIR/zip/MODULE.zip containing the contents of the gb_deliver.log.""" + if len(args) != 3: + print('usage: packmodule OUTDIR MODULE') sys.exit(2) - (executable, outdir, module, milestone) = args + (executable, outdir, module) = args os.chdir(outdir) - zipdir = 'zip.'+milestone + zipdir = 'zip' try: os.makedirs(zipdir) except OSError: |