(config_file: str, store: Store)
| 142 | |
| 143 | |
| 144 | def install_hooks(config_file: str, store: Store) -> int: |
| 145 | install_hook_envs(all_hooks(load_config(config_file), store), store) |
| 146 | return 0 |
| 147 | |
| 148 | |
| 149 | def _uninstall_hook_script(hook_type: str) -> None: |