(src, dst)
| 55 | os.rename (target_rc_path, source_rc_path) |
| 56 | |
| 57 | def zip(src, dst): |
| 58 | zf = zipfile.ZipFile(dst, "w", zipfile.ZIP_DEFLATED) |
| 59 | zf.write(src, os.path.basename(src)) |
| 60 | zf.close() |
| 61 | |
| 62 | parser = argparse.ArgumentParser() |
| 63 | parser.add_argument('--new-minor', action="store_true", dest="new_minor", help="Deploy new minor version", default=False) |