Download source code for node.js, unpack it and install it in virtual environment.
(env_dir, src_dir, args)
| 755 | |
| 756 | |
| 757 | def install_node(env_dir, src_dir, args): |
| 758 | """ |
| 759 | Download source code for node.js, unpack it |
| 760 | and install it in virtual environment. |
| 761 | """ |
| 762 | try: |
| 763 | install_node_wrapped(env_dir, src_dir, args) |
| 764 | except BaseException: |
| 765 | # this restores the newline suppressed by continued=True |
| 766 | logger.info('') |
| 767 | raise |
| 768 | |
| 769 | |
| 770 | def install_node_wrapped(env_dir, src_dir, args): |
no test coverage detected