(options)
| 377 | subdir_files(options, zoslibinc, 'include/node/zoslib/', wanted_zoslib_headers) |
| 378 | |
| 379 | def run(options): |
| 380 | if options.headers_only: |
| 381 | if options.command == 'install': |
| 382 | headers(options, install) |
| 383 | return |
| 384 | if options.command == 'uninstall': |
| 385 | headers(options, uninstall) |
| 386 | return |
| 387 | else: |
| 388 | if options.command == 'install': |
| 389 | files(options, install) |
| 390 | return |
| 391 | if options.command == 'uninstall': |
| 392 | files(options, uninstall) |
| 393 | return |
| 394 | |
| 395 | raise RuntimeError('Bad command: %s\n' % options.command) |
| 396 | |
| 397 | def parse_options(args): |
| 398 | parser = argparse.ArgumentParser( |
no test coverage detected