Refresh default-sensitive shared templates without touching scripts.
(
project_path: Path,
*,
invoke_separator: str,
force: bool = False,
)
| 111 | console.print() |
| 112 | |
| 113 | def _refresh_shared_templates( |
| 114 | project_path: Path, |
| 115 | *, |
| 116 | invoke_separator: str, |
| 117 | force: bool = False, |
| 118 | ) -> None: |
| 119 | """Refresh default-sensitive shared templates without touching scripts.""" |
| 120 | _refresh_shared_templates_impl( |
| 121 | project_path, |
| 122 | version=get_speckit_version(), |
| 123 | core_pack=_locate_core_pack(), |
| 124 | repo_root=_repo_root(), |
| 125 | console=console, |
| 126 | invoke_separator=invoke_separator, |
| 127 | force=force, |
| 128 | ) |
| 129 | |
| 130 | |
| 131 | def _install_shared_infra( |