(tool)
| 1490 | |
| 1491 | |
| 1492 | def uninstall_binaryen(tool): |
| 1493 | debug_print(f'uninstall_binaryen({tool})') |
| 1494 | build_root = binaryen_build_root(tool) |
| 1495 | print(f"Deleting path '{build_root}'") |
| 1496 | remove_tree(build_root) |
| 1497 | |
| 1498 | |
| 1499 | def is_binaryen_installed(tool): |
no test coverage detected