update README links, minor logging fix

This commit is contained in:
Sam G. 2024-08-12 01:52:28 -07:00
parent 433af79028
commit 017f1c5b1c
2 changed files with 5 additions and 3 deletions

View File

@ -46,11 +46,11 @@ registered locations. When necessary, `symconf` will also match and execute scri
reload apps after updating their configuration.
You can find more details on how `symconf`'s matching scheme works in
[Matching](docs/reference/matching).
[Matching](docs/reference/matching.md).
# Configuring
Before using, you must first set up your config directory to house your config files and
give `symconf` something to act on. See [Configuring](docs/reference/configuring) for
give `symconf` something to act on. See [Configuring](docs/reference/configuring.md) for
details.
# Installation

View File

@ -832,9 +832,11 @@ class ConfigManager:
app_template_files = list(app_template_dir.iterdir())
num_temps = len(app_template_files)
num_themes = len(theme_map)
print(
color_text("├─", Fore.BLUE),
f'{app_name} :: generating ({len(app_template_files)}) template files'
f'{app_name} :: generating ({num_temps}) templates from ({num_themes}) themes'
)
for template_file in app_template_files: